6.create shortcode for wordpress plugin
6.create shortcode for plugin
=========================================================================================
/*
*
*create shortcode for plugin
*
*/
function nwpt_custom_shortcode() {
add_shortcode( 'NWPSCODE', 'nwpt_testimonial_loop' );
}
add_action( 'init', 'nwpt_custom_shortcode' );
.............................
//theme er header.php file e eivabe use korte hobe
if(function_exists('nwpt_custom_shortcode')){
nwpt_testimonial_loop();
}
.................
No comments