add short code not working
I am new to wordpress, I am creating a plugin and for the short code, I am using the short code api. But when I insert this shortcode in my page, it displayes as it is, it does not display the required output. Can asny body tell me what i am doing wrong? Am I calling or creating the function on right place or not? Below is my code
function show_review() {
echo "this is a review form";
}
add_shortcode('urp_review', 'show_review');
I have created the file named as urp_functions.php in my plugin directory and created the above function. Any help will be appreciated
Topic template-tags shortcode plugin-development Wordpress
Category Web