在CUSTOM POST TYPE中重写Wordpress网址

时间:2015-09-30 07:37:04

标签: php wordpress url wordpress-theming

我有星座类型,我有4个类别(每年,每月,可爱和每周占星),每个帖子有12个编辑 - 12个标志。 我需要这个URL结构:

  1. 每年我需要这个网址:http://domain.com/post-type/taxonomy/year
  2. 每月我需要这个网址: http://domain.com/post-type/taxonomy/month/year
  3. 在可爱的我需要这个网址: http://domain.com/post-type/taxonomy/month/year
  4. 在每周我需要这个网址:http://domain.com/post-type/taxonomy
  5. 在每年我有多年,每月和可爱我有很多年和很多个月,每周只在页面上编辑每周。

    起初我认为“分类学” - 它将是分类学的父类别,“月” - 它将是分类学的子类别和“年” - 它将被发布。 但是当在分类法中创建类别相同的名称时,他们的slug变成了“month-1,month-2”,并且当我在帖子类型中创建相同的帖子名称时也是如此。 所以这个解决方案不起作用。

    现在我想创建4个帖子类型,并在每个帖子中输入重写网址,如下所示:

    1. 在每年我需要在网址显示: http://domain.com/horoscope/post-type/year-of-post创建并且没有帖子
    2. 在每月和可爱中我需要在url show中: http://domain.com/horoscope/post-type/month-of-post-create/year-of-post-create/并且没有帖子
    3. 每周一次:http://domain.com/horoscope/weekly/

1 个答案:

答案 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页面并且不显示。

还有什么比这更好的?