Tagged Questions
1
vote
1answer
57 views
wp_specialchars and wp_specialchars_decode in a shortcode plugin
I have written my first plugin, a shortcode plugin. I have read about wp_specialchars and wp_specialchars_decode but I'm not sure how to use them.
The plugin read a shortcode allowing some parameters ...
0
votes
3answers
221 views
When do I need to use esc_attr when using WordPress internal functions
When I am putting a WordPress value inside the attribute tag, for example, the following method does not need esc_attr
e.g.
// JS code
alert('<?php echo get_bloginfo('name');?>');
the ...