Wordpress自定义网站地图快捷代码遵循自定义菜单顺序
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress自定义网站地图快捷代码遵循自定义菜单顺序相关的知识,希望对你有一定的参考价值。
Use a shortcode [sitemap] to render a sitemap ordered by custom menu order (Wordpress 3+).
//Our custom sitemap which reads the menu order using extended menu walker class //Shortcode function wdp_shortcode_sitemap($atts){ //[sitemap] ), $atts)); //call the function $shortcodecontent = wdp_sitemap(); return $shortcodecontent; } add_shortcode('sitemap', 'wdp_shortcode_sitemap'); //call the menu and use our custom walker function wdp_sitemap(){ return wp_nav_menu(array('theme_location' => 'primary', 'walker' => new wdp_sitemap_walker(), 'fallback_cb' => '', 'echo'=>false)); } //extended navigation class for sitemap rendering class wdp_sitemap_walker extends Walker_Nav_Menu { function start_el(&$output, $item, $depth, $args) { global $wp_query; $output .= $indent . '<li id="sitemap-'. $id . '"' . $value .'>'; //$item_output .= $args->before; $item_output .= '<a'. $attributes .'>'; $item_output .= $args->link_before .$prepend.apply_filters( 'the_title', $item->title, $item->ID ).$append; // $item_output .= $args->link_after; $item_output .= '</a>'; //$item_output .= $args->after; $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args ); } }
以上是关于Wordpress自定义网站地图快捷代码遵循自定义菜单顺序的主要内容,如果未能解决你的问题,请参考以下文章
php Wordpress yoast seo插件,为自定义URL生成自定义站点地图
如何将自定义 HTML 代码放在 wordpress 网站的标题中[关闭]
php 使用WordPress高级自定义字段实现Google地图的无JavaScript实现