Can I hook inside another hook?
When it comes to the oop way of doing things you need more than just the class, you also need to instantiate it as an object at some point if you want the action to fire. class myClass{ function __construct(){ add_action( ‘init’, array( $this, ‘someFun’ ) ); } function someFun(){ include( ‘my-script.php’ ); } } … Read more