Search Results
Article: WordCampUK 2010: A Review
… WordCampUK is an informal 2 day conference and barcamp that centers … but will be pulled out into plugins. The idea is that they can be turned on if certain features are needed. These plugins will also be fully … is understandable as they are usually written by people with small blogs in mind, these sorts of traffic levels are quite unusual to your …
Article: Custom Post Types In WordPress 3.0
… This article relates to WordPress 3.0. Much of the code posted here won't work on previous versions and some of the information may change in newer versions. WordPress already comes with five different content … This is the standard content type and is generally the most used in a blog install. Posts tend to be aggregated onto pages but this is not …
Article: Some Essential WordPress Plugins
… I know what you are thinking, but this isn't just another WordPress plugin blog post. I am asked every few weeks what WordPress plugins I would … try to add any alternatives (if they exist) to plugins I use. All In One SEO Pack Although WordPress is pretty good in terms of SEO it could …
… bloginfo('name'); ?> In addition to the name tag the tags description, url, admin_email and version are also available. The Loop is used by …
Article: Extending The WordPress Page Walker
… I have looked at printing an intelligent list of WordPress pages in a previous blog post , but I wanted to revisit this topic and use the Walker … is an abstract class that sorts out a lot of the basic functionality needed to extract and render a hierarchical list of items from a …
Article: Displaying Wordpress Authors
… author has an ID associated with them, and this is appended to the URL using the author tag. If you have permalinks turned on then the … . ' ' . $curauth->last_name; ?> (<a href="<?php echo $curauth->user_url; ?>"><?php echo $curauth->user_url; ?></a>)</h2> <p><?php echo $curauth->user_description; ?></p> You …
… For many sites the blog is only part of the site, not the main reason for the site existing. In these cases the blog is kept in the directory /blog or similar. Occasionally (for what ever reason) it might be necessary to change the directory. To that end here is a small walk …
… Wordpress widgets are a way to customise the sidebar of your blog very … instillation from version 2.2 onwards. With a widgetised theme all you need to do to change the menu system on your blog is drag and drop …
… A good security tip when installing your Wordpress blog is to change the database table prefix, the idea is that … tables from any hackers looking to compromise your blog. This can be done in the wp-config.php file and the variable $table_prefix . Changing …
… changes are in the options table. There are two references to your URL in this table that must be altered to stop Wordpress redirecting … SET option_value = 'http://www.example.com' WHERE option_name = 'siteurl'; UPDATE wp_options SET option_value = 'http://www.example.com' … 'http://www.example.com'); UPDATE wp_comments SET comment_author_url = REPLACE(comment_author_url , 'http://www.example2.com', …