您可以在自己的自定义函数中使用wp\\u get\\u recent\\u posts函数。
像这样的方法应该会奏效:
function get_recent_post_link(){
// Restrict to latest post
$args = array( \'numberposts\' => \'1\' );
// Get the post
$latest_post = wp_get_recent_posts( $args );
foreach( $latest_post as $the_post ){
return get_permalink($the_post["ID"]);
}
}
您可以调用锚点中的函数:
<a href="<?php echo get_recent_post_link(); ?>">Latest</a>
注意,我还没有测试这个,请作为指导。