你好@mike23:
这段代码向您展示了如何获取单数和复数名称(假设您在register_post_type()
)。
请注意,代码示例显示为一个独立文件,您可以另存为test.php
将文件保存在网站的根目录中,并使用加载到浏览器中http://yoursite.com/test.php
(假设您更换yoursite.com
使用站点的域!):
<?php
/*
Filename: test.php
*/
include( \'../wp-load.php\' );
header( \'Content-type:text/plain\' );
$post_type_object = get_post_type_object(\'p_project_plans\');
echo "Singular: {$post_type_object->labels->singular_name}\\n";
echo "Plural: {$post_type_object->labels->name}\\n";