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
… the Comments menu item. 'menu_position' => 30 menu_icon This is a URL to the image that will be used when your menu item is added to the … you might do something like the following. 'menu_icon' => WP_CONTENT_URL . '/plugins/' . plugin_basename(dirname(__FILE__)) . … rewrite Set this setting to false to prevent rewriting the URL of your custom content types. This setting can take an associative …
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 …
… If you are setting up a Wordpress blog the chances are that you will be looking into modifying … The basic theme must contain two basic files, the main control is done from a file called index.php and a file called styles.css , which is …
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', …