您可以使用Options API或Setting API 将数据存储在数据库中。编写一个插件,为简介文本创建一个元框,并在archive-unicorn.php
.
或者您可以使用description
参数时register_post_type
并将其打印在archive-unicorn.php
像这样:
$unicorn_obj = get_post_type_object(\'unicorn\');
if ( !empty($unicorn_obj) ) {
echo $unicorn_obj->description;
}
或者你可以
add_meta_box
, e、 g。
_is_sticky_unicorn
, 到
unicorn
自定义帖子类型,然后使用查询在
archive-unicorn.php
:
if( get_post_meta( $post->ID, \'_is_sticky_unicorn\', true ) ) {
// show your sticky post here
} else {
// show the rest here
}