Pass instance number to shortcode child
You can wrap it in a class. Here’s an example: class WPSE_Answers_Counting { private $instance_answers = 0; private $instance_prev_answers = 0; private $instance_answer = 0; public function init() { add_shortcode( ‘answers’, [ $this, ‘answers_shortcode’ ] ); add_shortcode( ‘ans’, [ $this, ‘answer_shortcode’ ] ); } public function answers_shortcode( $atts = [], $content = null ) { … Read more