将此代码添加到函数中。将为页面创建php和分类框,用户可以从中为页面创建类别。
<?php
add_action( \'init\', \'create_book_tax\' );
function create_book_tax() {
register_taxonomy(
\'genre\',
\'page\',
array(
\'label\' => __( \'Genre\' ),
\'rewrite\' => array( \'slug\' => \'genre\' ),
\'hierarchical\' => true,
)
);
}
?>