gpt4 book ai didi

php - WordPress 最近帖子的 MySql 查询需要链接到各个帖子

转载 作者:行者123 更新时间:2023-11-29 21:36:02 25 4
gpt4 key购买 nike

此代码显示 WordPress 中最近的 3 篇帖子。但是,当点击链接时,每个链接都会连接到最新的帖子,而不是与摘录相关的帖子。我需要摘录链接来连接到其相关的完整帖子。

我没有对此进行编码,并且我意识到它已被弃用。我还尝试过 WP 最近的帖子功能和短代码,但不起作用。 PHP 代码非常困惑,导致了很多问题。我对 MySql 的了解非常有限。

              $sql = mysql_query("SELECT * from wp_term_relationships where term_taxonomy_id = '3' ORDER BY object_id DESC LIMIT 3 ");
while ($row = mysql_fetch_assoc($sql))
{
$object_id = $row['object_id'];
$sql_posts = mysql_query("SELECT * From wp_posts where ID = '$object_id' AND post_status = 'publish' AND post_type = 'post' ORDER BY ID DESC LIMIT 3");
while($row_posts = mysql_fetch_assoc($sql_posts))
{?>
<div class=" gaming_news_col col-lg-4 col-md-4 col-sm-4">
<h4><a href="<?php the_permalink() ?>"><?php echo $row_posts['post_title'];?></h4>
<p><?php
$content = $row_posts['post_content'];
$post_content = myTruncate($content, 150, " ");
echo $post_content;
?></p>

最佳答案

方法 myTruncate 将文本剪切到某个特定范围,例如,在您的情况下,它将仅显示前 150 个字符。如果您想显示全文,请不要使用 myTruncate。只需回显内容即可。

$content = $row_posts['post_content'];
echo $post_content;

这应该可以解决问题,并且不会将文本剪切到指定的限制。

关于php - WordPress 最近帖子的 MySql 查询需要链接到各个帖子,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34912231/

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