Tagged Questions
6
votes
1answer
145 views
From a security standpoint, should bloginfo() or get_bloginfo() be escaped?
I've been reviewing a lot of information about WP theme and plugin security and understand the concept that you should escape attributes and HTML values in themes and plugins. I've seen bloginfo() and ...
1
vote
1answer
274 views
Access bloginfo, get_option, and plugins_url from a non-core php file
I am creating a plugin that has a php file in the plugin directory which is accessed directly via a custom rewrite url.
I need this file to be able to use the three functions mentioned in the title.
...