-
Reed Sutton
Hi,
I want to make the entire sidebar div have data-nosnippet html attribute:
https://developers.google.com/search/docs/crawling-indexing/robots-meta-tagSo <div data-nosnippet>
How would you recommend making this modification, through elements, php sidebar template, etc?
Thanks,
Reed -
Hi Reed,
Can you try this PHP code?
add_filter( 'generate_parse_attr', function( $attributes, $context ) { if ( in_array( $context, ['right-sidebar', 'left-sidebar'] ) ) { $attributes['data-nosnippet'] = 'true'; } return $attributes; }, 10, 2 );Adding PHP: https://docs.generatepress.com/article/adding-php/
-
Reed Sutton
Yes I believe that is working! thanks. easy solution.
-
Glad to hear that 🙂
Viewing 4 posts - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.