I am developing my own theme,Every thing is working fine,but short codes are not working.
I deactivated my theme and i checked with the twenty twelve theme,here the short codes are working.
i wrote the following code in index.php
echo do_shortcode('[layerslider id="1"]');
it is not working,even in pages too([layerslider id="1"]
)
but the following custom shortcode is working
i wrote this code in function.php
function codes()
{
echo "short code working";
}
add_shortcode('codes','codes');
echo do_shortcode('[codes]');