现在我想添-6ren">
gpt4 book ai didi

php - 在 wordpress 中的帖子之间切换

转载 作者:太空宇宙 更新时间:2023-11-04 13:27:41 26 4
gpt4 key购买 nike

我已经用代码创建了一个 sidebar.php 文件;

<section class="sidomeny"><p class="Senastenytt2"><?php get_search_form();?></p></section><!--Slut på sidomeny-->

<div id="nyhet3">

<?php

query_posts('category = all');

if (have_posts()) :

while (have_posts()) : ?>

<?php the_post(); ?>

<p class="datum2"><?php the_time('Y-m-d'); ?></p>
<p class="Nyhetsrubrik3"><a style="orange"; href="<?php the_permalink() ?>" ><?php the_title(); ?></a></p>

<?php the_excerpt(); ?>
<p class="textnyhet2"></p>


<?php
endwhile;
endif;
?>

</div><!--Slut på Nyhet3-->

现在我想添加一个功能,如果您按下边栏新闻部分,“textnyhet2”部分将更新您点击的新闻。这就是它现在的工作方式。

但问题是,每当您单击其中一个“最新消息”链接时,侧边栏就会消失。因此,我需要帮助的是编辑 sidebar.php 文件,以便带有链接的“最新消息”功能仍然存在,这样您就不必在想阅读另一篇文章时返回一页。

我不知道该怎么做。如果它涉及 php,或者您可以通过简单地访问 wordpress 中的帖子/页面部分来完成。

如果有人能帮助我,我将不胜感激。如果我忘记了任何必要的信息,请告诉我,我会发帖。

谢谢!

<?php
get_header();
?>
<section class="textinnehall">
<?php
if (have_posts()) :
while (have_posts()) :
the_post();
the_content();
endwhile;
endif;?>
</section>
<section class="sidomeny">
<?php
get_sidebar(); ?>
</section>
<?php
get_footer();
?>

这是我的 page.php 文件。不知道会不会有什么帮助。但是侧边栏已经处于事件状态。

最佳答案

可能是你的单个页面没有调用侧边栏。

您的主题 single.php 页面需要有相同的设计(按照二十十个主题标准)。

<p class="Nyhetsrubrik3"><a style="orange"; href="<?php the_permalink() ?>" ><?php the_title(); ?></a></p>

href <?php the_permalink() ?>将帖子转到单页以供完整查看

只需在主题的单个页面中调用侧边栏即可。

关于php - 在 wordpress 中的帖子之间切换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23602697/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com