Search Results
… 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', …
… the following error at the top of every admin page. Warning: parse_url(http://10.0.0.1:594191?ver=20091217) [function.parse-url]: Unable to parse URL in \www\wp-includes\script-loader.php on line 542 For some reason …
… update their status so it is worth doing. This is all done through a URL using the status parameter, like this. http://twitter.com/home/?status=text+to+post Because this is a URL you will need to encode it properly in order for Twitter to understand it. Using Wordpress you need to put a call to the urlencode() function to encode any string you might want to post. <?php …
… /%postname%-%post_id%.html This will make a post on your site have a URL something like this. /this-is-a-new-post-2.html It is also possible … that you don't add too much to your permalink structure or your URL will be very, very long and completely defeat the point of the exercise. Adding in the post ID will make the URL of the post completely unique, which is good for SEO, but will also …
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 …
… exploit has been found within the latest (currently 2.8.3) version of Wordpress that can cause any attacker to reset the admin password. The attacker won't be able to see what the password is, and the new password is emailed to you anyway, but it might cause some users to be locked out of their blogs if they can't get access to the email or their email is down. …
… alternative method is to see if the preview parameter is set in your URL string. if(!isset($_GET['preview'])){ // analytics code here } … …
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 …
… 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: 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 …