魔法场(自定义帖子类型)和自定义分类永久链接

发布于 2024-10-16 18:28:04 字数 513 浏览 1 评论 0 原文


我正在使用链接到 自定义帖子模板 http://magicfields.org/" rel="nofollow">Magic Fields 用于创建名为公司的自定义帖子类型。
我还创建了名为城市的自定义分类。 城市是分层的(如类别),每个公司都选择一个城市。

例如:
我选择了一家公司,其职位标题为 Microsoft 并选择了城市分类 Redmond。 我希望我的永久链接看起来像这样:
http://www.mysite.com/Redmond/Microsoft

就像您有一个帖子类别并且 WordPress 会在您的永久链接前面添加所选的第一个类别。
能做到吗?

I'm using Custom Post Template which I linked to Magic Fields to create custom post type named Company.
I also created custom taxonomy named City.
City is hierarchical (like categories), and every Company has one city selected.

For example:
I have a company with post title Microsoft and City taxonomy Redmond selected.
I want my permalinks to look like this:
http://www.mysite.com/Redmond/Microsoft

Just like when you have a post category and wordpress prepends first category selected to your permalink.
Can it be done?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

缘字诀 2024-10-23 18:28:04

我已经找到了这个问题的解决方案。这是代码:

add_filter('post_link', 'mba_courses_permalink', 10, 3);
add_filter('post_type_link', 'mba_courses_permalink', 10, 3);

function mba_courses_permalink($permalink, $post_id, $leavename) {
    if (strpos($permalink, '%mba_courses%') === FALSE) return $permalink;

    // Get post
    $post = get_post($post_id);
    if (!$post) return $permalink;

    // Get taxonomy terms
    $terms = wp_get_object_terms($post->ID, 'mba_courses'); 
    if (!is_wp_error($terms) && !empty($terms) && is_object($terms[0])) $taxonomy_slug = $terms[0]->slug;
    else $taxonomy_slug = 'mba_courses';

return str_replace('%mba_courses%', $taxonomy_slug, $permalink);
}

I've found solution to this problem. Here is the code:

add_filter('post_link', 'mba_courses_permalink', 10, 3);
add_filter('post_type_link', 'mba_courses_permalink', 10, 3);

function mba_courses_permalink($permalink, $post_id, $leavename) {
    if (strpos($permalink, '%mba_courses%') === FALSE) return $permalink;

    // Get post
    $post = get_post($post_id);
    if (!$post) return $permalink;

    // Get taxonomy terms
    $terms = wp_get_object_terms($post->ID, 'mba_courses'); 
    if (!is_wp_error($terms) && !empty($terms) && is_object($terms[0])) $taxonomy_slug = $terms[0]->slug;
    else $taxonomy_slug = 'mba_courses';

return str_replace('%mba_courses%', $taxonomy_slug, $permalink);
}
此刻的回忆 2024-10-23 18:28:04

我还没有尝试过您提到的插件组合,但“通常”,您想要的永久链接只能通过类别列表或页面来实现。你想要的是这样的:
http://blogurl.com/categoryname/blogpostname
而这在 WordPress 中不会发生。

您的选择是:
http://blogurl.com/parentpage/childpage
或者
http://blogurl.com/parentcategory/childcategory

I haven't tried the plugin combination you mentioned but "normally", the permalink you want can only be achieved with category listings OR pages. What you want is something like:
http://blogurl.com/categoryname/blogpostname
And this doesn't happen in wordpress.

Your options are:
http://blogurl.com/parentpage/childpage
or
http://blogurl.com/parentcategory/childcategory

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文