capital_p_dangit

函数


capital_p_dangit ( $text )
参数
  • (string)
    $text
    The text to be modified.
    Required:
返回值
  • (string) The modified text.
定义位置
  • wp-includes/formatting.php
    , line 5537
引入
3.0.0
弃用

Forever eliminate “WordPress” from the planet (or at least the little bit we can influence).

Violating our coding standards for a good function name.

function capital_P_dangit( $text ) {
	// Simple replacement for titles.
	$current_filter = current_filter();
	if ( 'the_title' === $current_filter || 'wp_title' === $current_filter ) {
		return str_replace( 'Wordpress', 'WordPress', $text );
	}
	// Still here? Use the more judicious replacement.
	static $dblq = false;
	if ( false === $dblq ) {
		$dblq = _x( '“', 'opening curly double quote' );
	}
	return str_replace(
		array( ' WordPress', '‘Wordpress', $dblq . 'Wordpress', '>Wordpress', '(WordPress' ),
		array( ' WordPress', '‘WordPress', $dblq . 'WordPress', '>WordPress', '(WordPress' ),
		$text
	);
}