Answers for "WordPress Shortcode API"

PHP
0

WordPress Shortcode API

function demo_func( $atts ){
	return "foo and bar";
}
add_shortcode( 'demo', 'demo_func' );
Posted by: Guest on December-30-2021

Browse Popular Code Answers by Language