Possible Duplicate:
Is there a way to change 'Posts' to be 'Portfolio' is the WP backend?
是否有一种方法可以通过函数来实现这一点。php文件?
我试过:
add_filter( \'gettext\', \'change_post_to_article\' );
add_filter( \'ngettext\', \'change_post_to_article\' );
function change_post_to_article( $translated ) {
$translated = str_ireplace( \'Post\', \'Article\', $translated );
return $translated;
}
但它不会更改“post”的所有条目。例如,我仍然有“贴子标签”。
有什么建议吗?