3
add_action (), add_filter () फ़ंक्शन से पहले या बाद में
जब वर्डप्रेस स्निपेट / ट्यूटोरियल / प्लगइन्स के माध्यम से देख रहा हूं, तो मैं अक्सर देखता हूं add_action()और add_filter()फ़ंक्शन घोषित होने से पहले रखा जा रहा है: add_action( 'publish_post', 'email_friends' ); function email_friends( $post_ID ) { $friends = 'bob@example.org, susie@example.org'; mail( $friends, "sally's blog updated" , 'I just put …