我试试这个,但它不适合我...请帮我提前谢谢
<?php $next_post = get_next_post(); if (!empty( $next_post )): ?>
<?php $url = wp_get_attachment_url( get_post_thumbnail_id($post->ID) ); ?>
<a href="<?php echo get_permalink( $next_post->ID ); ?>"> <img src="<?php echo $url; ?>" />
<?php echo $next_post->post_title; ?>
</a>
<?php endif; ?>
任何人都知道如何做到这一点。
答案 0 :(得分:0)
Muddasir,
尝试这样的事情:
下一篇文章
<?php next_posts_link('<img src="imageURL.com/next.png" />'); ?>
上一篇文章
<?php previous_posts_link('<img src="imageURL.com/previous.png" />'); ?>