Codex

Function Reference/capital P dangit

Contents

Description

Changes the incorrect capitalization of Wordpress into WordPress.

WordPress uses it to filter the content, the title and comment text.

Usage

 <?php capital_P_dangit$text ); ?> 

Parameters

text 
(string) The text to be formatted.

Removing

As lots of people don't like the filter, here's how you can remove it.

remove_filter( 'the_title', 'capital_P_dangit', 11 );
remove_filter( 'the_content', 'capital_P_dangit', 11 );
remove_filter( 'comment_text', 'capital_P_dangit', 31 );

References

This article is marked as in need of editing. You can help Codex by editing it.