How create a test function on WordPress -
i want create custom functions on wordpress ? test function bellow
function test() { echo "welcome"; } and how can convert function wordpress , how can call function?
put in functions.php in theme. can call function anywhere in theme. can have function called on events adding action hook.
for example call function whenever save post:
add_action( 'save_post', 'test' );
Comments
Post a Comment