function my_init_method() {
global $wp_post_types;
$wp_post_types["post"]->labels->add_new_item= "hello";
}
add_action('init', 'my_init_method');
ワードプレスをカスタマイズしよう
function my_init_method() {
global $wp_post_types;
$wp_post_types["post"]->labels->add_new_item= "hello";
}
add_action('init', 'my_init_method');