Plugin Shortcode in wordpress 4.5 not Working
-
Hello.
This should be very simple but for me, I am learning wordpress for the first time although I am good in PHP.
I would have a php code which I wish to have as a plugin. However, when I paste the shortcode in a post, the shortcode does not work.
Here is a simple plugin I am working with as a dummy.
<?php defined( 'ABSPATH' ) or die( 'No script kiddies please!' ); /* Plugin Name: My Leap Year */ function test() { echo'Is the shortcode working?'; } add_shortcode( 'leap', 'test' );
The shortcode [leap] does not work when I paste it in a post/page. How can I make it work?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Plugin Shortcode in wordpress 4.5 not Working’ is closed to new replies.