gpt4 book ai didi

php - 显示 wordpress 页面的全部内容

转载 作者:太空宇宙 更新时间:2023-11-04 00:48:37 25 4
gpt4 key购买 nike

这里是 LINK我正在做。 关于我们 部分没有显示全部内容,也没有显示更多按钮以转到下一页,而我想显示 关于我们 页面的全部内容而不是简短摘要。

我检查了很多但没有在主题中找到任何修复它的选项

更新:
我在 (page-template/custom-home-page.php) 中找到了这个

<?php  while ( $query->have_posts() ) : $query->the_post(); ?>
<div class="row">
<div class="col-lg-8 col-md-7">
<h3><?php the_title(); ?></h3>
<hr>
<p><?php the_excerpt(); ?></p>
<div class="more-btn">
<a href="<?php the_permalink(); ?>"><?php esc_html_e('MORE','vw-one-page'); ?></a>
</div>
</div>
<div class="col-lg-4 col-md-5">
<img src="<?php the_post_thumbnail_url('full'); ?>"/>
</div>
</div>
<?php $i++; endwhile;
wp_reset_postdata();?>
<?php else : ?>
<div class="no-postfound"></div>
<?php endif;
endif;?>
</div>
</section>

最好的问候

最佳答案

您主题中的代码很有可能。尝试在主题文件“/wp-content/themes/your_theme_name”中搜索,类似于:

<div class="col-lg-8 col-md-7">
<h3>About Us</h3> <!-- Or <?php the_title(); ?> -->
<hr>
<?php the_exerpt(); ?>
<div class="more-btn">
<a href="<https://yoursite/tempp/index.php/about-us/>">MORE</a> <!-- Or something like <?php the_permalink( ... ) ?> -->
</div>
</div>

这是一个例子。毕竟,我不知道你的主题是怎么做到的。

然后<?php the_exerpt(); ?>更改为 <?php the_content(); ?> .并删除或隐藏:

<div class="more-btn">
...
</div>

但如果这不是您的个人 WordPress 主题,那么最好通过 Child Theme 来完成

关于php - 显示 wordpress 页面的全部内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56510355/

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