在WordPress中,使用重写规则(rewrite rules)可以帮助我们自定义URL结构,实现更好的搜索引擎优化(SEO)和用户体验
functions.php
文件中注册它。例如,我们创建一个名为"events"的自定义撰写类型:function create_post_type() {
register_post_type('events',
array(
'labels' => array(
'name' => __('Events'),
'singular_name' => __('Event')
),
'public' => true,
'has_archive' => true,
'rewrite' => array('slug' => 'events')
)
);
}
add_action('init', 'create_post_type');
functions.php
文件中注册它。例如,我们为"events"撰写类型创建一个名为"event-categories"的自定义分类法:function create_taxonomy() {
register_taxonomy('event-categories', 'events', array(
'labels' => array(
'name' => __('Event Categories'),
'singular_name' => __('Event Category')
),
'public' => true,
'hierarchical' => true,
'rewrite' => array('slug' => 'event-category')
));
}
add_action('init', 'create_taxonomy');
functions.php
文件中添加以下代码:function custom_rewrite_rules() {
add_rewrite_rule('^events/([^/]+)/([^/]+)/?$', 'index.php?post_type=events&event-categories=$matches[1]&name=$matches[2]', 'top');
}
add_action('init', 'custom_rewrite_rules');
这将允许你使用以下格式的URL访问事件:http://yourwebsite.com/events/event-category/event-name/
。
通过以上步骤,你已经成功地在WordPress中应用了重写规则。现在,你可以根据需要创建自定义撰写类型、分类法和URL结构,从而优化网站的SEO和用户体验。