尝试在主页上创建超链接,将您带到最新的博客帖子(在单个视图中,即整个帖子中),不包括2个类别。
我将分别链接到这样的排除类别:
<?php
$args = array( 'numberposts' => '1', 'category' => 23 );
$recent_posts = wp_get_recent_posts( $args );
foreach( $recent_posts as $recent ){
echo '<a href="' . get_permalink($recent["ID"]) . '">Latest Post</a>';
}
?>
但不知道如何编写链接,将您带到最新的帖子,不包括类别23&amp; 24
答案 0 :(得分:0)
以下是Ross Hanney在Wordpress论坛上的回答:
<?php
$args = array(
'posts_per_page' => 1,
'category__not_in' => array( 23, 24 )
);
$recent_posts = get_posts( $args );
foreach ( $recent_posts as $recent ) {
echo '<a href="' . get_permalink( $recent ) . '">Latest Post</a>';
}
?>