Skip to content

Instantly share code, notes, and snippets.

@torounit
Last active February 13, 2016 11:55
Show Gist options
  • Save torounit/d6f6b06e4f17b79e8528 to your computer and use it in GitHub Desktop.
Save torounit/d6f6b06e4f17b79e8528 to your computer and use it in GitHub Desktop.
wp_setup_nav_menu_item の Hotfix
<?php
add_filter('wp_setup_nav_menu_item', function( $menu_item ) {
if ( isset( $menu_item->post_type ) ){
if( 'post_type_archive' == $menu_item->type ) {
$object = get_post_type_object( $menu_item->object );
$post_content = wp_trim_words( $menu_item->post_content, 200 );
$menu_item->description = '' == $post_content ? $object->description : $menu_item->post_content;
}
}
return $menu_item;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment