Tagged Questions
2
votes
1answer
43 views
Using get_option() in JavaScript
Previously, I used the get_option() function to get an option in PHP, like this:
$width = get_option('my_width');
This is inside a shortcode function.
Now, I want to have an option in JavaScript. ...
-1
votes
2answers
524 views
shortcode causing the_content() to return blank?
I have a shortcode that just retrieves some info from the options table in the database.
For whatever reason, when the content reaches a certain character limit the_content() to return blank?
The ...