/** * 电巢子主题 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'], ]); });
在淘宝直通车的运营过程中,卖家们其实也需要深 777
在淘宝上,竞争是越来越激烈了,很多地方大家都 789
因为近几年网上的店铺经营的效果比较好,很多商 1K
运营淘宝店铺的过程中,很多认为没必要做了,说 818
当店铺没流量、没转化的时候,卖家用户就会比较 924
淘宝平台作为较大的网购平台,随着其不断的发展 1.6K
商家再给宝贝写标题的时候,一定要考虑到很多细 857
淘宝直通车是淘宝网卖家使用最多的一种付费推广 796
大家都知道,淘宝有各种折扣活动,那么,大家知 862
淘宝卖家们在开直通车的时候,最好是能够提前掌 1.5K