列出带有缩略图的 WordPress 子页面
我正在尝试列出 WordPress 页面的子页面 - 这很简单并且由他们的文档提供。但是,我似乎找不到如何在每个页面名称上方包含设置的页面缩略图。
此处提供的代码列出了每个名称:
<ul>
<?php
global $id;
wp_list_pages("title_li=&child_of=$id&show_date=modified
&date_format=$date_format"); ?>
</ul>
该函数的文档位于:http://codex。 wordpress.org/Function_Reference/wp_list_pages
非常感谢
I am trying to list the children of a WordPress page - which is easy and is provided by their documentation. However, I can't seem to find how to include the set page thumbnail above each page name.
The code is provided here to list each name:
<ul>
<?php
global $id;
wp_list_pages("title_li=&child_of=$id&show_date=modified
&date_format=$date_format"); ?>
</ul>
and the documentation for that function is here: http://codex.wordpress.org/Function_Reference/wp_list_pages
Thanks a lot
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
打开你的functions.php文件,如果它还没有存在的话,将其粘贴到那里..
然后访问你的每个页面,在右侧,你将有一个新的元框,
称为“特色图片”,您可以点击该链接打开您的媒体库,从那里选择您想要用作特色图片的图片,(页面 - 缩略图)
对您的每个页面执行此操作想要显示缩略图...
然后可能创建一个新的页面模板吗?
添加下面的代码来循环浏览页面并为每个页面提取图像..
非常粗略的指南,但您明白了吗..?
有关 the_post_thumbnail 的更多信息
马蒂
Open your functions.php file, paste this in there if its not already there..
then visit each of your pages, on the right hand side, you will have a new meta box,
called "Featured Image" you can click the link to open your media library, from there select the image you want to use as the featured image, ( page - thumbnail )
do this for each of the pages you want to show a thumbnail for..
then possibly create a new page template?
adding the code below to loop through the pages and pull out the image for each..
very rough guide, but you get the just of it..?
more on the_post_thumbnail
Marty