Archive | /wp-includes/general-template.php RSS feed for this section

paginate_links

Retrieve paginated link for archive post pages.Technically, the function can be used to create paginated link list for any area. The ‘base’ argument is used to reference the url, which will be used to create the paginated links. The ‘format’ argument is then used for replacing the page number. It is however, most likely and by default, to be used on the archive post pages.

2477

Continue reading

noindex

Display a noindex meta tag if required by the blog configuration.If a blog is marked as not being public then the noindex meta tag will be output to tell web robots not to index the page content. Add this to the wp_head action. Typical usage is as a wp_head callback. add_action( ‘wp_head’, ‘noindex’ );

2457

Continue reading

language_attributes

Display the language attributes for the html tag.Builds up a set of html attributes containing the text direction and language information for the page.

2241

Continue reading