click here to see sample image.
我试图在悬停时显示关于我的wordpress菜单的最新文章,但我不知道如何去做。
答案 0 :(得分:0)
您可以使用 wp_get_recent_posts
。您可以在 WordPress 菜单中调用以下内容并根据自己的喜好进行自定义:
<?php
/* Only Get 1 Post In Defined Category */
$args = array(
'numberposts' => '1',
'category' => 'your-category'
);
/* Get Recent Posts */
$recent_posts = wp_get_recent_posts( $args );
foreach( $recent_posts as $recent ){
echo '<a href="' . get_permalink($recent["ID"]) . '"><img src="../your-image"></a>';
}
wp_reset_query();
?>
您需要使用 WordPress 的任何方法设置img
src
,例如featured image。