Thank you I missed this option for your shortcode.
I did it this way because it returns structured data in a <pre> element:
add_filter(
'the_content',
function ( $content ) {
if ( is_page( 'contact' ) ) {
return $content .
preg_replace(
'/<(\/?)pre[^>]*>/',
'<$1script>',
do_shortcode(
'[reviews_rating structured_data]'
)
);
}
return $content;
},
1
);
-
This reply was modified 10 months, 1 week ago by louisgcom.
-
This reply was modified 10 months, 1 week ago by louisgcom.
-
This reply was modified 10 months, 1 week ago by louisgcom.