gpt4 book ai didi

wordpress : how to add categories and tags on pages?

转载 作者:行者123 更新时间:2023-12-03 11:04:01 25 4
gpt4 key购买 nike

我通过在我的主题目录中创建一个 php 文件使用自定义模板生成了页面
就像是 :

<?php
*
* Template Name: Contact Page
*/
?>
<html ..... </html>

然后在仪表板上添加一个新页面,选择这个新模板

我现在如何将标签和类别关联到每个页面?
创建帖子而不是页面是唯一的解决方案吗?

最佳答案

更好的是添加到您的主题文件夹中的functions.php:

function myplugin_settings() {  
// Add tag metabox to page
register_taxonomy_for_object_type('post_tag', 'page');
// Add category metabox to page
register_taxonomy_for_object_type('category', 'page');
}
// Add to the admin_init hook of your theme functions.php file
add_action( 'init', 'myplugin_settings' );

关于wordpress : how to add categories and tags on pages?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14323582/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com