Wordpress列表页面返回

时间:2011-12-13 21:09:01

标签: wordpress

我在wordpress中列出页面时遇到问题。我正在制作模板,需要像这样的标题中的表格数据

<td><a href="#"><img src="<?php bloginfo('template_directory'); ?>/images/index_04.gif" alt="" width="133" height="41" border="0"></a></td> 
<td><a href="#"><img src="<?php bloginfo('template_directory'); ?>/images/index_05.gif" alt="" width="122" height="41" border="0"></a></td> 
<td><a href="#"><img src="<?php bloginfo('template_directory'); ?>/images/index_06.gif" alt="" width="148" height="41" border="0"></a></td> 
<td><a href="#"><img src="<?php bloginfo('template_directory'); ?>/images/index_07.gif" alt="" width="137" height="41" border="0"></a></td>

wp_list_pages()和wp_page_menu都返回了无序列表ul之类的页面,但我需要页面链接将它们链接到相应的链接。

有没有办法只返回页面链接,或者我可以使页面适合这个表格数据。 模板已经设置了样式,因此我想在不更改这些表格外观的情况下添加它。

1 个答案:

答案 0 :(得分:1)

你试过了吗?

<?php wp_page_menu('echo=0'); ?>

这会将列表作为要在PHP中使用的HTML文本字符串返回。看看codex