WordPress映像在搜索网站时未显示,但标题和文章按钮确实

发布于 2025-01-19 15:19:32 字数 447 浏览 0 评论 0原文

我正在尝试解决网站中的故障,当用户搜索文章标题和按钮显示时,文章图像没有,搜索结果的图像如下。下面的代码显示标题和按钮,有人知道我如何找到代码也可以获取图像吗?

(下面是先前的代码)代码1

<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ? 
>"><?php the_title(); ?></a>    

”在此处输入图像描述”

I am trying to fix a fault in my website, when a user searches an article the title and button show but the article image does not, the image of the search result is below. The code below displays the title and the button, does anyone know how I can locate the code to get the image also?

(Below is the previous code) Code 1

<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ? 
>"><?php the_title(); ?></a>    

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

意中人 2025-01-26 15:19:32

所以使用 PHP 检索图像的代码是:(

<?php the_post_thumbnail(); ?>

在代码中显示)

<a id="featuredimg" href="<?php the_permalink(); ?>" title="<?php 
the_title_attribute(); ?>"> <?php the_post_thumbnail(); ?><br> <?php the_title(); 
?> </a>

So the code to retrieve the images using PHP is:

<?php the_post_thumbnail(); ?>

(Displayed within the code)

<a id="featuredimg" href="<?php the_permalink(); ?>" title="<?php 
the_title_attribute(); ?>"> <?php the_post_thumbnail(); ?><br> <?php the_title(); 
?> </a>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文