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' ); 

see list of action hooks.


Comments

Popular posts from this blog

assembly - 8086 TASM: Illegal Indexing Mode -

Java, LWJGL, OpenGL 1.1, decoding BufferedImage to Bytebuffer and binding to OpenGL across classes -

javascript - addthis share facebook and google+ url -