How To

How to Disable Syntax Highlighting in WordPress 2.8?
HOW TO One of WordPress 2.8 new features is syntax highlighted editor for WordPress files. While the idea was exiting, I must admit I didn’t enjoyed using this new editor.

How to Create user-defined RSS feeds in WordPress
HOW TO If you need a custom RSS feed, like for example, a feed indexing only somes categories + tags, or if you redirected all WordPress RSS feeds to Feedburner but still want to be able to get a category feed, the solution is to use a page template. Create a new file and simply paste the following code in this file. …

How to Schedule a Cron Events in your WordPress Blog?
HOW TO Schedules a hook which will be executed by the WordPress actions core on a specific interval, specified by you. The action will trigger when someone visits your WordPress site, if the scheduled time has passed. In this tutorial, I’ll show you how you create an event that will be executed once hourly, or daily, etc.

How to Highlight Search Terms with jQuery?
HOW TO A neat way to spice up your WordPress search page is to highlight search terms within your search results. I’ve seen some tutorials on the net on how to do this, but I haven’t found one that highlights both title and post content and is a drop-in modification for WordPress. Here is the complete tutorial for highlighting search terms on …

How to Integrate Breadcrumb Navigation without a plug-in
HOW TO There are plenty of WordPress extensions that generate breadcrumb navigation. But you can actually create custom breadcrumb navigation with only a handful of lines of code in the template, opening up greater control and, potentially, less overhead. This approach to breadcrumbs builds on the get_post_ancestors function. To start with, here is a basic implementation of breadcrumbs that only deals with …

Manually reset your WordPress password
HOW TO What to do if you lost your WordPress password? The easier is to use PhpMyAdmin and execute a simple SQL query to update it. Here’s how to proceed.

Show related posts without a plugin
HOW TO Displaying related posts is a very great way to help visitors staying longer on your blog. You can use a plugin, but you also can use tags and a custom code to show related posts. Let’s see how to do! This code will display related posts based on the current post tag(s). It must be pasted within the loop. <?php …

How to Only Show Posts With a Specific Custom Field
HOW TO Sometimes you only want to show posts that you’ve added a specific custom field to. For instance, lets say you write songs and movie reviews and for each you give them a custom field “review_type” with the value set to either “songs” or “movie”. So how would you show posts that are only movie reviews? Easily!