如何为自定义帖子类型添加自定义支持?

时间:2018-05-16 作者:Psychotiik

我需要为我的WordPress插件定义一个自定义支持功能,但我找不到如何做到这一点。

我想做的是在某些自定义帖子类型上显示一个框,其中包含2个元字段,用户可以在其中键入经度和纬度值,以实现地理定位。

为了便于实际使用,我希望将此自定义功能附加到帖子上,就像支持帖子一样:

<?php
$args = array(
    ...
    ...
    \'supports\' => array(\'title\',\'editor\', \'thumbnail\', \'my_custom_support\'),
    ...
    ...
);
register_post_type(\'my_custom_post_type\', $args);
?>
或者,如果事先已经创建了我的自定义帖子类型:

<?php
add_post_type_support(\'my_custom_post_type\', \'my_custom_support\');
?>
我知道我想要什么,但我就是找不到如何注册新的支持。。。

我希望有人能回答这个问题,因为我实际上是在扯头发!

1 个回复
SO网友:D. Dan

你可以加上

...
\'supports\' => array(\'title\',\'editor\', \'thumbnail\', \'custom-fields\'),
...
您无需事先创建任何内容,可以在添加新帖子时定义纬度和经度这两个字段。

结束

相关推荐

Admin Theme customization

我遵循wordpress codex网站上关于通过插件创建管理主题的说明。我激活了插件,但我的样式表没有包含在<head>.. 这是我的代码:add_action( \'admin_init\', \'kd_plugin_admin_init\' ); add_action( \'admin_menu\', \'kd_plugin_admin_menu\' ); function kd_plugin_admin_init() { /* Register