为什么此函数的输出
// One Recent Post
function most_recent_post_shortcode() {
return wp_get_archives( \'type=postbypost&limit=1&format=custom\');
}
add_shortcode( \'recent-post\', \'most_recent_post_shortcode\' );
和短代码[recent-post]
在文章顶部显示输出,而不是在短码所在的文章正文中?有没有更好的方法使用快捷码和wp\\u get\\u归档(或其他功能)来显示最近帖子的标题和链接?
这似乎与这个问题有关:The result of a shortcode appear BEFORE page content