如何在 wordpress 的循环外获取页面永久链接和标题。
我有一个像
function get_post_info(){
$post;
$permalink = get_permalink($post->ID);
$title = get_the_title($post->ID);
return $post_info('url' => $permalink, 'title' => $title);
}
当这个函数在循环中调用时,它会返回帖子的标题和 url。
当它在循环外被调用时。它不返回当前页面的标题和 url。在主页中调用时,它应该返回主页的标题和 url
怎么弄成这样?相反,此函数返回最新的帖子标题和 url