dream543211 2014-05-14 03:00
浏览 146
已采纳

如何在Wordpress中添加自定义标签

I was trying to create custom tags for my wordpress application. I entered this piece of code to my functions.php:

function create_my_taxonomies() {
register_taxonomy('actors', 'post', array(
'hierarchical' => false, 'label' => 'Actors',
'query_var' => true, 'rewrite' => true));
register_taxonomy('producers', 'post', array(
'hierarchical' => false, 'label' => 'Producers',
'query_var' => true, 'rewrite' => true));
    }
add_action('init', 'create_my_taxonomies', 0);

When I now try to access my admin panel, it throws me this error: Fatal error: Call to undefined function add_action() in C:\xampp\htdocs\wordpress\wp-includes\functions.php on line 4209

Then I checked and found that it's because of the add_action() function that it cant find. So I included require( ABSPATH . WPINC . '/plugin.php' ); at top of the functions.php

But now it throws me another error: Fatal error: Cannot redeclare add_filter() (previously declared in C:\xampp\htdocs\wordpress\wp-includes\plugin.php:82)

I tried looking up everywhere but I doesn't seem to find anything. Suggestions and help would be appreciated. Thanks in advance!

  • 写回答

2条回答 默认 最新

  • dongxie3963 2014-05-14 03:05
    关注

    your functions.php should be in your theme directory, not in includes directory. Should be somewhere like wp-content/themes/YOUR_THEME/functions.php

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥30 Unity接入微信SDK 无法开启摄像头
  • ¥20 有偿 写代码 要用特定的软件anaconda 里的jvpyter 用python3写
  • ¥20 cad图纸,chx-3六轴码垛机器人
  • ¥15 移动摄像头专网需要解vlan
  • ¥20 access多表提取相同字段数据并合并
  • ¥20 基于MSP430f5529的MPU6050驱动,求出欧拉角
  • ¥20 Java-Oj-桌布的计算
  • ¥15 powerbuilder中的datawindow数据整合到新的DataWindow
  • ¥20 有人知道这种图怎么画吗?
  • ¥15 pyqt6如何引用qrc文件加载里面的的资源