如何分配 rel="cat"和 rel=“标签”在面包屑中

发布于 2024-11-19 07:47:49 字数 582 浏览 3 评论 0 原文

目前我正在构建一个新的 WP 主题。我是一名设计师,只有 PHP 的基础知识。因此,对于面包屑,我使用了 Dimox 的脚本

但从 SEO 的角度来看,我想将 rel="cat" 和 rel="tag" 分别添加到面包屑中的类别和标签链接。我问过他,但他也无法提供解决方案。因此,如果任何 WP 开发人员可以帮助我解决这个问题,那就太好了。

这是类别链接的确切代码段。

else {
        $cat = get_the_category(); $cat = $cat[0];
        echo get_category_parents($cat, TRUE, ' ' . $delimiter . ' ');
        echo $before . get_the_title() . $after;
      }

所以我想为 get_the_category 函数创建的类别链接分配一个 rel="cat" 标签。

Currently I'm building a new WP theme. I'm a designer and have only basic knowledge of PHP. So for breadcrumbs, I used Dimox's script.

But from an SEO point of view, I want to add the rel="cat" and rel="tag" to categories and tag links respectively in the breadcrumbs. I asked him, but he couldn't provide a solution. So if any WP developer can help me out in this it would be great.

Here is the Exact piece of code for the category link.

else {
        $cat = get_the_category(); $cat = $cat[0];
        echo get_category_parents($cat, TRUE, ' ' . $delimiter . ' ');
        echo $before . get_the_title() . $after;
      }

So I want to assign a rel="cat" tag to the category link which is created by the get_the_category function.

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

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

发布评论

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

评论(1

篱下浅笙歌 2024-11-26 07:47:49

原始代码的第45行更改为:

if ($cat->parent != 0){
    $parents = array_reverse(get_ancestors($cat->cat_ID, 'category'));
    foreach($parents as $parent_id){
        $parent = get_category($parent_id);
        echo '<a rel="cat" href="'.get_category_link($parent->cat_ID).'" title="'.esc_attr(sprintf(__( "View all posts in %s" ), $parent->name)).'">'.$parent->name.'</a> '.$delimiter.' ';
    }
}

echo '<a rel="cat" href="'.get_category_link($cat->cat_ID).'" title="'.esc_attr(sprintf(__( "View all posts in %s" ), $cat->name)).'">'.$cat->name.'</a> '.$delimiter.' ';

Change line 45 of the original code to:

if ($cat->parent != 0){
    $parents = array_reverse(get_ancestors($cat->cat_ID, 'category'));
    foreach($parents as $parent_id){
        $parent = get_category($parent_id);
        echo '<a rel="cat" href="'.get_category_link($parent->cat_ID).'" title="'.esc_attr(sprintf(__( "View all posts in %s" ), $parent->name)).'">'.$parent->name.'</a> '.$delimiter.' ';
    }
}

echo '<a rel="cat" href="'.get_category_link($cat->cat_ID).'" title="'.esc_attr(sprintf(__( "View all posts in %s" ), $cat->name)).'">'.$cat->name.'</a> '.$delimiter.' ';
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文