Print an array of WPRichSnippets plugin Template Elements https://wprichsnippets.com/doc/shortcodes/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Print an array of WPRS Template Elements | |
*/ | |
function wprs_display_element_array_4321() { | |
global $post; | |
if (!wprs_is_enabled($post->ID)) return; | |
$template = wprs_template($post->ID); | |
echo '<pre>'; | |
print_r($template); | |
echo '<pre>'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment