• Hey there,
    I’ve written a plugin that starts with:
    add_action('get_sidebar', 'myfunction');
    and it doesn’t work unless I change it to:
    add_action('get_footer', 'myfunction');

    even though the template code is:
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>

    In fact, I can get the plugin to display for just about any other action (or even add_filter) with the exception of “get_sidebar”.

    Pity, because that’s EXACTLY where I need it.

    Any ideas will make me happy like chocolate cake.

    Cheers!

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘add_action (‘get_sidebar’, ‘myfunction’) not working’ is closed to new replies.