Wordpress自定义网站地图快捷代码遵循自定义菜单顺序

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress自定义网站地图快捷代码遵循自定义菜单顺序相关的知识,希望对你有一定的参考价值。

Use a shortcode [sitemap] to render a sitemap ordered by custom menu order (Wordpress 3+).
  1. //Our custom sitemap which reads the menu order using extended menu walker class
  2. //Shortcode
  3. function wdp_shortcode_sitemap($atts){ //[sitemap]
  4. extract(shortcode_atts(array(
  5. ), $atts));
  6. //call the function
  7. $shortcodecontent = wdp_sitemap();
  8.  
  9. return $shortcodecontent;
  10. }
  11. add_shortcode('sitemap', 'wdp_shortcode_sitemap');
  12.  
  13. //call the menu and use our custom walker
  14. function wdp_sitemap(){
  15. return wp_nav_menu(array('theme_location' => 'primary', 'walker' => new wdp_sitemap_walker(), 'fallback_cb' => '', 'echo'=>false));
  16. }
  17.  
  18. //extended navigation class for sitemap rendering
  19. class wdp_sitemap_walker extends Walker_Nav_Menu
  20. {
  21. function start_el(&$output, $item, $depth, $args)
  22. {
  23. global $wp_query;
  24. $indent = ( $depth ) ? str_repeat( " ", $depth ) : '';
  25. $id=strtolower(str_replace(" ","-",$item->title));
  26. $id=str_replace(array('&','&'),"",$id);
  27. $id=str_replace('--',"-",$id);
  28. $output .= $indent . '<li id="sitemap-'. $id . '"' . $value .'>';
  29. $attributes = ! empty( $item->attr_title ) ? ' title="' . esc_attr( $item->attr_title ) .'"' : '';
  30. $attributes .= ! empty( $item->target ) ? ' target="' . esc_attr( $item->target ) .'"' : '';
  31. $attributes .= ! empty( $item->xfn ) ? ' rel="' . esc_attr( $item->xfn ) .'"' : '';
  32. $attributes .= ! empty( $item->url ) ? ' href="' . esc_attr( $item->url ) .'"' : '';
  33.  
  34. //$item_output .= $args->before;
  35. $item_output .= '<a'. $attributes .'>';
  36. $item_output .= $args->link_before .$prepend.apply_filters( 'the_title', $item->title, $item->ID ).$append;
  37. // $item_output .= $args->link_after;
  38. $item_output .= '</a>';
  39. //$item_output .= $args->after;
  40. $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
  41. }
  42. }

以上是关于Wordpress自定义网站地图快捷代码遵循自定义菜单顺序的主要内容,如果未能解决你的问题,请参考以下文章

php Wordpress yoast seo插件,为自定义URL生成自定义站点地图

如何将自定义 HTML 代码放在 wordpress 网站的标题中[关闭]

wordpress如何自定义分类栏目的title

php 使用WordPress高级自定义字段实现Google地图的无JavaScript实现

php 使用WordPress高级自定义字段实现Google地图的无JavaScript实现

如何为基于 wordpress 自定义主题的网站进行响应式设计?