我需要为我的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\');
?>
我知道我想要什么,但我就是找不到如何注册新的支持。。。
我希望有人能回答这个问题,因为我实际上是在扯头发!