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
… 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 …
… sending out the email, which will reset the password. Here is the URL that can be used to reset the password. …
… 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
… grammar, and style checking and stuff. Redirection : Redirect URLs from one place to another. Lots of different uses and everything …