我是wordpress的新手。在一个页面中,我显示了来自特定类别的3个最新帖子。所以现在,我想要一个“查看所有帖子”链接,以便访问者可以看到该类别的所有帖子。但我不能这样做。
请帮助创建此链接。
我应该在此(href =“ - ”)属性中添加什么代码? - >
<a href="">view all posts</a>
请清楚说明。
答案 0 :(得分:1)
https://codex.wordpress.org/Function_Reference/get_category_link
来自codex的例子:
<?php
// Get the ID of a given category
$category_id = get_cat_ID( 'Category Name' );
// Get the URL of this category
$category_link = get_category_link( $category_id );
?>
<!-- Print a link to this category -->
<a href="<?php echo esc_url( $category_link ); ?>" title="Category Name">Category Name</a>
答案 1 :(得分:0)
它有效,
<a href="<?php echo get_permalink( get_option( 'page_for_posts' ) );?>"><p> Blog </p> </a>
创建名为Blog的页面 然后从Setting&gt;阅读设置帖子页面&gt;博客