我正在开发WordPress网站,我需要一个下拉菜单,可以加载所有可用页面列表。
这是为我做的代码
$args = array(
'sort_order' => 'ASC',
'sort_column' => 'post_title',
'post_type' => 'page',
'post_status' => 'publish',
);
$pages = get_pages($args);
但是当WPML插件被激活并且我也有使用不同语言的页面时。因此上述代码仅返回英语或意大利语中一种语言的页面列表。
我很累,无法找到一种方法来搜索WPML论坛的票证,但它们均已弃用,因此现在需要一种解决方案。 我对https://wpml.org/forums/topic/show-all-pages-wp_list_pages/网址感到厌倦,但没有运气。
任何好的方法如何解决?
任何有关此的信息将不胜感激。谢谢!
答案 0 :(得分:0)
经过更多研究,我找到了合适的解决方案。 这是通过激活语言获取所有页面的代码。
$all_pages = array();
$languages = apply_filters( 'wpml_active_languages', NULL, array( 'skip_missing' => 0));
foreach( (array) $languages as $lang ) {
/* change language */
do_action( 'wpml_switch_language', $lang['code'] );
/* building query */
$posts = new WP_Query( array(
'sort_order' => 'ASC',
'sort_column' => 'post_title',
'post_type' => 'page',
'posts_per_page' => -1,
'post_status' => 'publish',
) );
$posts = $posts->posts;
foreach( (array) $posts as $post ) {
$all_pages[esc_url(get_page_link($post->ID))] = $post->post_title;
}
}