我有星座类型,我有4个类别(每年,每月,可爱和每周占星),每个帖子有12个编辑 - 12个标志。 我需要这个URL结构:
在每年我有多年,每月和可爱我有很多年和很多个月,每周只在页面上编辑每周。
起初我认为“分类学” - 它将是分类学的父类别,“月” - 它将是分类学的子类别和“年” - 它将被发布。 但是当在分类法中创建类别相同的名称时,他们的slug变成了“month-1,month-2”,并且当我在帖子类型中创建相同的帖子名称时也是如此。 所以这个解决方案不起作用。
现在我想创建4个帖子类型,并在每个帖子中输入重写网址,如下所示:
答案 0 :(得分:0)
现在我使用以下代码创建4个帖子类型并重写网址:
global $wp_rewrite;
$kuukausihoroskooppi_structure = '/horoskoopit/kuukausihoroskooppi/%monthnum%/%year%/%kuukausihoroskooppi%';
$wp_rewrite->add_rewrite_tag("%kuukausihoroskooppi%", '([^/]+)', "kuukausihoroskooppi=");
$wp_rewrite->add_permastruct('kuukausihoroskooppi', $kuukausihoroskooppi_structure, false);
// Add filter to plugin init function
add_filter('post_type_link', 'kuukausihoroskooppi_permalink', 10, 3);
// Adapted from get_permalink function in wp-includes/link-template.php
function kuukausihoroskooppi_permalink($permalink, $post_id, $leavename) {
$post = get_post($post_id);
$rewritecode = array(
'%year%',
'%monthnum%',
'%day%',
'%hour%',
'%minute%',
'%second%',
$leavename? '' : '%postname%',
'%post_id%',
'%category%',
'%author%',
$leavename? '' : '%pagename%',
);
if ( '' != $permalink && !in_array($post->post_status, array('draft', 'pending', 'auto-draft')) ) {
$unixtime = strtotime($post->post_date);
$category = '';
if ( strpos($permalink, '%category%') !== false ) {
$cats = get_the_category($post->ID);
if ( $cats ) {
usort($cats, '_usort_terms_by_ID'); // order by ID
$category = $cats[0]->slug;
if ( $parent = $cats[0]->parent )
$category = get_category_parents($parent, false, '/', true) . $category;
}
// show default category in permalinks, without
// having to assign it explicitly
if ( empty($category) ) {
$default_category = get_category( get_option( 'default_category' ) );
$category = is_wp_error( $default_category ) ? '' : $default_category->slug;
}
}
$author = '';
if ( strpos($permalink, '%author%') !== false ) {
$authordata = get_userdata($post->post_author);
$author = $authordata->user_nicename;
}
$date = explode(" ",date_i18n('Y F d H i s', $unixtime));
$rewritereplace =
array(
$date[0],
$date[1],
$date[2],
$date[3],
$date[4],
$date[5],
$post->post_name,
$post->ID,
$category,
$author,
$post->post_name,
);
$permalink = str_replace($rewritecode, $rewritereplace, $permalink);
} else { // if they're not using the fancy permalink option
}
return $permalink;
}
对于每年的帖子类型,我的网址中不需要%monthum%,因此代码中的帖子类型为:
$kuukausihoroskooppi_structure = '/horoskoopit/kuukausihoroskooppi/%monthnum%/%year%/%kuukausihoroskooppi%';
我删除%month%/并且这个帖子类型与url http://domain.com/horoscope/post_type/year_of_post/post_slug一起使用模板:single-post_type.php 但我不需要post-slug,所以我删除了%kuukausihoroskooppi%,但是这个页面显示为archive.php;
但帖子类型每月和可爱的网址%%um%重定向到404页面并且不显示。
还有什么比这更好的?