0

我使用插件wp-type

wp-type 插件用于制作自定义页面。例如,您可以添加一个“文件”类型的新字段,并使用以下代码在页面中显示文件链接:

<?php
echo(types_render_field("file", array("title"=>"Download", "link"=>"true")));
?>

我的问题是当我尝试显示文件时:在主页上一切正常,但是当我尝试使用 index.php 显示帖子列表时它不起作用。

此问题仅出现在我使用的帖子页面中:

<?php while (have_posts()) : the_post();
echo(types_render_field("file", array("title"=>"Download", "link"=>"true")));
endwhile;?> 

它运作良好。

请帮助我显示 index.php 中的所有页面以及我尝试的每个页面文件:

<?php while (wp_list_pages( ));
echo(types_render_field("file", array("title"=>"Download", "link"=>"true")));
endwhile;?>
4

1 回答 1

0

替换您的代码以显示页面列表:

 while (wp_list_pages( )); to while (wp_list_pages( )):
于 2013-05-20T12:03:16.010 回答