/** * 电巢子主题 V2.0 — Taxonomy 扩展(基于 OneNav 父主题) * * 父主题 OneNav 已注册 4 个 CPT:sites / app / book / bulletin * 子主题不重复注册 CPT,只在父主题的 CPT 上扩展额外 Taxonomy: * - site_cat (网址分类,挂在父主题的 sites) * - site_tag (网址标签,挂在父主题的 sites) * - site_country (网址国家/地区,挂在父主题的 sites / app / book) * * @package DianChao */ if (!defined('ABSPATH')) exit; /* ============================ * 1. 网址分类(site_cat) * 挂在父主题 'sites' CPT 上 * ============================ */ add_action('init', function () { if (taxonomy_exists('site_cat')) return; register_taxonomy('site_cat', ['sites'], [ 'labels' => [ 'name' => '网址分类', 'singular_name' => '网址分类', 'search_items' => '搜索分类', 'all_items' => '所有分类', 'parent_item' => '父级分类', 'edit_item' => '编辑分类', 'update_item' => '更新分类', 'add_new_item' => '添加新分类', 'menu_name' => '网址分类', ], 'public' => true, 'show_in_rest' => true, 'hierarchical' => true, 'rewrite' => ['slug' => 'site-cat'], ]); }); /* ============================ * 2. 网址标签(site_tag) * 挂在父主题 'sites' CPT 上 * ============================ */ add_action('init', function () { if (taxonomy_exists('site_tag')) return; register_taxonomy('site_tag', ['sites'], [ 'labels' => [ 'name' => '网址标签', 'singular_name' => '网址标签', 'search_items' => '搜索标签', 'menu_name' => '网址标签', ], 'public' => true, 'show_in_rest' => true, 'hierarchical' => false, 'rewrite' => ['slug' => 'site-tag'], ]); }); /* ============================ * 3. 国家/地区(site_country) * 挂在父主题 'sites' / 'app' / 'book' CPT 上 * ============================ */ add_action('init', function () { if (taxonomy_exists('site_country')) return; register_taxonomy('site_country', ['sites', 'app', 'book'], [ 'labels' => [ 'name' => '国家/地区', 'singular_name' => '国家/地区', 'search_items' => '搜索国家', 'all_items' => '所有国家', 'edit_item' => '编辑国家', 'update_item' => '更新国家', 'add_new_item' => '添加新国家', 'menu_name' => '国家/地区', ], 'public' => true, 'show_in_rest' => true, 'hierarchical' => true, 'rewrite' => ['slug' => 'site-country'], ]); });
新的一年就要来临,对于商家朋友来说,还有一场硬仗 305
如果开直通车能够设置好相关的数据和计划,那么对推 636
在淘宝双十一正式活动开始之前,会有一个预售活动哦 399
还是比较受淘宝用户们关注的一个大型的电商促销活动 585
和淘宝双十二都是淘宝比较重要的活动,而且这两个活 1.1K
双11每年都有,然而,很多消费者朋友已经参加过很 601
是很多消费者和卖家都十分期待的促销活动,买家在这 540
的大型活动—淘宝双11活动不久之后就准备到来了, 611
距离的618活动已经没有多长的时间了,对于消费者 601
可以说淘宝在每个月中都会举办一些活动,作为就比较 1.5K