Hello guys, Is it possible to change the rel tag of a specific custom post type? Is there any snippet that can do this? The code that is showing in my custom post type: <a href="https://" rel="noopener" target="_blank">title</a> PHP: I need to show like this: <a href="https://" rel="noopener follow" target="_blank">title</a> PHP: Than you in advance
Not wordpress specific, but in php you can do something like this: <?php $str = '<a href="https://" rel="noopener" target="_blank">title</a>'; $pattern = '/noopener/i'; echo preg_replace($pattern, 'noopener follow', $str); ?> Code (markup):