This tutorial will teach you how you can show related posts in your site without using any plugin.
Thursday, December 16, 2010
How to Show Related Posts in WordPress Without Using Plugin
This tutorial will teach you how you can show related posts in your site without using any plugin.
Tuesday, December 14, 2010
Easily Migrate Your SEO Settings With A Single Click
With that said, there are plenty of SEO plugins that you can use. The All in One SEO Pack, Platinum SEO, Headspace2 and WordPress SEO are all great SEO plugins available in the repository. To make things more complicated, premium themes such as Headway themes, Frugal, Thesis, Genesis etc also comes with inbuilt SEO settings that make SEO plugins obsolete.
Monday, December 13, 2010
How to Embed Tweets In Your Posts
Blackbird Pie is a method created by Twitter Media to easily embed a tweet on your site. Feed it with the tweet's URL and it will generate the necessary code for you to copy/paste to your site.
Sunday, December 12, 2010
Fixing the Blackbird Pie Plugin - undefined function mb_strlen
If you are using the Blackbird Pie plugin to embed tweets to your posts, you might see an error message
To fix this, go to the Blackbird Pie plugin folder and open
[php firstline="17"]return mb_convert_encoding($swap,"UTF-8"); //not really necessary, but why not.[/php]
with
[php firstline="17"]if ( function_exists('mb_convert_encoding') )
return mb_convert_encoding($swap,"UTF-8"); //not really necessary, but why not.
else
return $swap;[/php]
At line 21 and 25, replace the line:
[php]$strlen = mb_strlen($string);[/php]
with
[php]if(function_exists('mb_strlen'))
$strlen = mb_strlen($string);
else
$strlen = strlen($string);[/php]
Save and upload the file to your server. It should work now.
via WordPress Support
Call to undefined function mb_strlen(). The reason for this error is because the plugin is using the mb_strlen function that is not activated by default. To fix this, go to the Blackbird Pie plugin folder and open
unicode.php in your text-editor. At line 18, replace the line:[php firstline="17"]return mb_convert_encoding($swap,"UTF-8"); //not really necessary, but why not.[/php]
with
[php firstline="17"]if ( function_exists('mb_convert_encoding') )
return mb_convert_encoding($swap,"UTF-8"); //not really necessary, but why not.
else
return $swap;[/php]
At line 21 and 25, replace the line:
[php]$strlen = mb_strlen($string);[/php]
with
[php]if(function_exists('mb_strlen'))
$strlen = mb_strlen($string);
else
$strlen = strlen($string);[/php]
Save and upload the file to your server. It should work now.
via WordPress Support
Limit The jQuery Lazy Load Plugin to Operate Only In The Content Area
In WordPress, there are several lazy load plugins that you can use. One of my favorite is the jQuery Image Lazy Load plugin, simply because it just works the moment you activate it. No configuration is required.
Thursday, December 2, 2010
How to Add Custom Navigation Menus to Your Themes
Now, unless you are using an updated theme, chances are, your old theme does not support this new custom navigation menu feature. Here is how you can modify your current theme to support the menus feature.
Wednesday, December 1, 2010
Dropbox-CDN Uses Your Dropbox Account As Free CDN
A new plugin known as Dropbox-CDN helps you automate the process. All you need to do is go to your Dropbox's Public folder, create several level of folders with the same folder structures as your WordPress server (for example: /wp-content/themes/your-theme-folder/) and place all your js, css and image files into it. Copy and paste your Dropbox public link to the Dropbox-CDN options page and it will do the rest for you.
Note: This plugin only supports themes who use the filters 'template_directory', 'template_directory_uri', 'stylesheet_directory', and 'stylesheet_directory_uri' to determine the paths to the theme's template and stylesheet files.
Subscribe to:
Comments (Atom)