列出带有缩略图的 WordPress 子页面

发布于 2024-12-04 03:53:03 字数 466 浏览 1 评论 0原文

我正在尝试列出 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 技术交流群。

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

发布评论

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

评论(1

べ映画 2024-12-11 03:53:03

打开你的functions.php文件,如果它还没有存在的话,将其粘贴到那里..

add_theme_support( 'post-thumbnails' );

然后访问你的每个页面,在右侧,你将有一个新的元框,
称为“特色图片”,您可以点击该链接打开您的媒体库,从那里选择您想要用作特色图片的图片,(页面 - 缩略图)

对您的每个页面执行此操作想要显示缩略图...

然后可能创建一个新的页面模板吗?

添加下面的代码来循环浏览页面并为每个页面提取图像..

$args = array('post_type'=>'page','post_status'=>'publish')
// The Query
query_posts( $args );

// The Loop
while ( have_posts() ) : the_post();
    if ( has_post_thumbnail()) :
           the_post_thumbnail();
        else:
           echo the_title();
        endif;
endwhile;

// Reset Query
wp_reset_query();

非常粗略的指南,但您明白了吗..?
有关 the_post_thumbnail 的更多信息

马蒂

Open your functions.php file, paste this in there if its not already there..

add_theme_support( 'post-thumbnails' );

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..

$args = array('post_type'=>'page','post_status'=>'publish')
// The Query
query_posts( $args );

// The Loop
while ( have_posts() ) : the_post();
    if ( has_post_thumbnail()) :
           the_post_thumbnail();
        else:
           echo the_title();
        endif;
endwhile;

// Reset Query
wp_reset_query();

very rough guide, but you get the just of it..?
more on the_post_thumbnail

Marty

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文