虽然有以下功能:
get_next_post();
next_image_link();
这些都不能用于帮助为博客中的照片页面提供前向和后向链接。我知道我可以访问下一张照片,因为wordpress在header.php
<!-- RSS & Pingbacks -->
...
<link rel='index' title='HugoPip' href='http://www.something.com' />
<link rel='start' title='Hello world!' href='http://www.something.com/?p=1' />
<link rel='prev' title='Driving Like a BOSS' href='http://www.something.com/?photo=driving-like-a-boss' />
<link rel='next' title='MegaCuts' href='http://www.something.com/?photo=megacuts' />
这些是在我wp-include/default-filters.php
的某个地方宣布的。我只是不知道如何访问它们。任何帮助将不胜感激。
答案 0 :(得分:0)
我找到了我要找的东西:
<?php previous_post('%','« previous','no'); ?> / <?php next_post('%','next »','no'); ?>