We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f742176 commit bfd2237Copy full SHA for bfd2237
wordpress-date-shortcodes.php
@@ -74,8 +74,11 @@ function infinitnet_process_meta_content( $content ) {
74
75
// Filter for processing shortcodes in all titles
76
function infinitnet_process_all_titles( $title ) {
77
- if ( ! is_admin() ) {
78
- return do_shortcode( $title );
+ static $processing = false;
+ if ( ! is_admin() && ! $processing ) {
79
+ $processing = true;
80
+ $title = do_shortcode( $title );
81
+ $processing = false;
82
}
83
return $title;
84
0 commit comments