Grab yours at WordPress Shop now.
-
- Hospedagem de Sites
- collaboration software
- Search Engine Optimization (SEO) and marketing company – search engine optimization and advertising specialist.
While everyone is trying to increase their RSS / Atom subscribers, this is how you can offer no feed to your readers on your WordPress.
Go to Settings → Reading sub-panel.
Under Syndication feeds show the most recent is set to -1 (negative 1) posts.
I got few self-hosted WordPress blog registered under my WordPress.com account in order to use WordPress.com Stats. Unfortunately, there are blogs that I accidentally added to this account and for that reason I would like to remove these blogs. The problem is how?
Deactivating WordPress.com Stats plugins from the blogs doesn’t help. Even with clearing [...]
rsd_link(), wlwmanifest_link(), wp_generator() (introduced in revision 6195) are bunch of WordPress default filters that clutter the <head></head> section of your theme template file:
<head>
…
<link rel="EditURI" type="application/rsd xml" title="RSD"
href="http://zeo.unic.net.my/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest xml"
href="http://zeo.unic.net.my/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress/2.4-bleeding" />
…
</head>
Not using it?
Simply remove those lines by adding the following to your theme functions.php:
remove_action(’wp_head’, ‘rsd_link’);
remove_action(’wp_head’, ‘wlwmanifest_link’);
if (function_exists(’wp_generator’)) {
remove_action(’wp_head’, ‘wp_generator’);
}
Update:
remove_action(’wp_head’, ‘rsd_link’);
remove_action(’wp_head’, ‘wlwmanifest_link’);
function [...]
You can use the datetime-design-pattern to publish both a human and machine readable by applying this code in your WordPress template within The Loop replacing the_time or the_date:
<abbr class=”published” title=”<?php the_time(’Y-m-d\TH:i:sO’); ?>”><?php the_time(’F jS, Y g:i a’); ?></abbr>
WordPress Comment Form Skip Link
Skip link (or Skip Navigation link) for comment form is really important when your entry has a lot of comments. But there’s no point in having one when your comment form is just few pixel away after the entry.
This is how you can show the skip link if the comment reach x number of comments. [...]