• in hooks.php we have :
    $hookpress_actions = apply_filters( 'hookpress_actions', $hookpress_actions ); and $hookpress_filters = apply_filters( 'hookpress_filters', $hookpress_filters );

    both are applied too early though due to them being run on the include, rendering it useless – the $wp_filter array is empty at that time

    due to that it seems impossible to add new hooks/filters without touching the plugin’s code

    http://wordpress.org/plugins/hookpress/

  • The topic ‘hookpress_actions apply_filter too early’ is closed to new replies.