发布导航代码

时间:2011-12-16 17:59:50

标签: wordpress navigation

我在首页使用此代码进行导航:

<h13><div class="navigation">

<div class="next-posts">
    <div id="image_left"><?php next_posts_link('<img src="IMG URL"/>') ?></div>

    <div id="posts_left"><h12><?php next_posts_link('Older Stuff') ?></h12></div>
</div>

<div class="prev-posts">
    <div id="posts_right"><h12><?php previous_posts_link('Newer Stuff') ?></h12></div>

    <div id="image_right"><?php previous_posts_link('<img src="IMG URL"/>') ?></div>
</div>

我想为我的单个帖子视图使用相同的导航,但我无法使其工作,我对PHP函数进行了更改,但在Codex中我只发现了一个显示来自同一类别的帖子的vay。 另外,我不希望链接显示上一个/下一个帖子的标题,只显示我定义的文本。 最后一点,我无法在单个视图中使图像导航工作,但它确实在我的主页上完美地工作。

这是我目前的代码:

<h13><div class="navigation">

<div class="next-post">
    <div id="img_left"><?php next_post_link('<img src="IMG URL"/>') ?></div>

    <div id="post_left"><h12><?php next_post_link('%link', 'Next post', TRUE); ?></h12></div>
</div>

<div class="prev-post">
    <div id="post_right"><h12><?php previous_post_link('%link', 'Previous post', TRUE); ?></h12></div>

    <div id="img_right"><?php previous_post_link('<img src="IMG URL"/>') ?></div>
</div>

1 个答案:

答案 0 :(得分:1)

h13和h12?我不知道标题是那么高!

我猜你已经读过Codex Page for the next_post_link() function.但是你确定在循环中包含了这个电话吗?另外,尝试在函数中添加额外的参数。有时他们会感到困惑。