【发布时间】:2023-04-01 09:45:01
【问题描述】:
我正在尝试更改 oNe 的目的地阅读更多 wordpress 中的链接:
我在frontpage.php中找到了这段代码:
<?php
foreach ($query as $post) {
setup_postdata($post);
printf('<div>');
printf('<div class="box">');
printf('<h4>%s</h4>', $post->post_title);
printf('<img src="%s" />', wp_get_attachment_image_src(get_post_thumbnail_id(get_the_id()), 'full')[0]);
printf('<p>%s</p>', get_the_excerpt($post->ID));
printf('<a href="%s" class="button">Read more</a>', post_permalink($post->ID));
printf('</div>');
printf('</div>');
}
wp_reset_postdata();
?>
我想我可以摆弄和编辑链接,以便它们通过这个 PHP 转到我的设计页面,但是我想知道如何通过 Wordpress 管理界面来完成。
因为据说 wordpress 应该让您轻松完成这项工作,但我似乎在这些阅读更多链接上找不到任何内容,除了我在 PHP 中找到的代码。
你知道改变链接目的地的“Wordpress方式”吗?
【问题讨论】:
-
这个问题可能已经在wordpress.stackexchange.com得到回答
-
关于 wordpress 的所有内容“阅读更多”:codex.wordpress.org/…... 等等 :)
-
谢谢,但没有答案,我已经看过了。我尽量不要弄乱代码,除非真的没有“wordpress”方式应该基本上自动完成。