Viewing 4 replies - 1 through 4 (of 4 total)
  • Not sure why it would be added to your top nav – are you using the old menu code (i.e. pre-WordPress 3.0)?

    To remove the stylesheet, use this. You may need to restyle it yourself in your theme’s style.css.

    function rog_dequeue_sticky_styles() {
        wp_dequeue_style( 'category-sticky-post' );
    }
    add_action( 'wp_enqueue_scripts', 'rog_dequeue_sticky_styles', 10 );

    Hey Dpolcino,

    I don’t think this plugin is adding anything to your top-level menu. There’s nothing that’s actually in the code that should do this.

    And @drrogg is spot on for dequeueing the styles.

    Thread Starter dpolcino

    (@dpolcino)

    Hah I don’t even remember this issue! But it’s all good now!

    Ha! Awesome – glad to hear it :).

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Adds the Category to my nav menu’ is closed to new replies.