试图在主页上创建一个超链接,将您带到不包括 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 和 24 之外的最新帖子