Displaying categories 时间:2018-02-07 作者:jordan 如何使用以下函数中的短代码将类别放置到页面上。<?php echo get_the_category_list(); ?> 2 个回复 SO网友:ghoul get_the_category_list 工作于The Loop 仅和需要post_id 作为参数。由于页面没有类别,因此默认情况下它在页面中不起作用。如果要检索页面上的所有类别,应使用以下选项之一:wp_list_categories get_categories( array( \'echo\' => false ) ); SO网友:Anton Flärd 要使用快捷码在页面上显示它,可以将其添加到functions.php:function display_category_list( $atts ) { return get_the_category_list(); } add_shortcode( \'display-categories\', \'display_category_list\' ); 然后在你的页面上写下[display-categories].资料来源:https://codex.wordpress.org/Function_Reference/add_shortcode我建议调查一下wp_list_categories-功能,因为它可以显示更详细的列表,但我不确定您的目标是什么,所以请将其作为提示:https://developer.wordpress.org/reference/functions/wp_list_categories/ 结束 文章导航