Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <?php
  2. function my_custom_post_type_nav_classes( $classes, $item ) {
  3. $custom_post_type = 'custom-post-type';
  4. if( ( is_post_type_archive( $custom_post_type) || is_singular( $custom_post_type ) )
  5. && get_post_meta( $item->ID, '_menu_item_object_id', true ) == get_option( 'page_for_posts' ) ){
  6. $classes = array_diff( $classes, array( 'current_page_parent' ) );
  7. }
  8. return $classes;
  9. }
  10. add_filter( 'nav_menu_css_class', 'my_custom_post_type_nav_classes', 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement