Search Results
Article: WordCampUK 2010: A Review
… grammar, and style checking and stuff. Redirection : Redirect URLs from one place to another. Lots of different uses and everything …
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 recommend, and I always end up giving a …
… 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 classes that are part of WordPress. The Walker class is an abstract class that sorts out a lot of …
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 …
… Wordpress widgets are a way to customise the sidebar of your blog very … widgetised theme all you need to do to change the menu system on your blog is drag and drop features and edit some simple parameters like …
… A good security tip when installing your Wordpress blog is to change the database table prefix, the idea is that … this will hide the tables from any hackers looking to compromise your blog. This can be done in the wp-config.php file and the variable …
… 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', …