Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #61482, comment 11


Ignore:
Timestamp:
06/24/2024 09:03:20 AM (2 years ago)
Author:
neo2k23
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #61482, comment 11

    initial v1  
    2222
    2323
     24Btw i fixed my issue another way.  I am using macros which are replaced on executing of the shortcode to avoid any further or future conflicts.
    2425
    2526
     27{{{
     28<a href="https://myforum.com" {new}>Goto the Forum</a>
     29}}}
     30
     31
     32the macro {new} will become target="_blank" rel="noopener" on execution of the shortcode.
     33
     34This way I can avoid any issues with the wordpress formatter affecting the shortcodes.
     35
     36
     37Thank you all for the explaining and contributions.