同意Hugh Man的观点,在回显链接之前最好选中该选项,但可以将静态页面设置为首页,并将帖子页面留空。在这种情况下,链接将只指向主URL。一种更好的方法是提供对posts归档页面的回退。类似这样:
function slug_all_posts_link() {
if ( \'page\' == get_option( \'show_on_front\' ) ) {
if ( get_option( \'page_for_posts\' ) ) {
echo esc_url( get_permalink( get_option( \'page_for_posts\' ) ) );
} else {
echo esc_url( home_url( \'/?post_type=post\' ) );
}
} else {
echo esc_url( home_url( \'/\' ) );
}
}