add_filter to ‘woocommerce_before_main_content’ [closed]
woocommerce_before_main_content is not a filter hook, it’s an action hook, so don’t expect it to return something, because nothing cares about what an action hook callback function returns, whereas for filters hooks, you will always see something waiting for the returned result: // Action hook do_action(‘foo_action’); // Filter hook $bar = apply_filters(‘foo_filter’); woocommerce_before_main_content That action … Read more