Site icon Hip-Hop Website Design and Development

Take away Exterior Hyperlinks from WordPress posts Utilizing add_filter() in Theme capabilities.php

We’ve got been looking out excessive an low for a plugin, code pattern or instance of how you can take away all exterior hyperlinks on the theme filter degree however can not seem to discover something on-line.

We need to preserve the exterior hyperlinks within the precise submit database entry however merely take away them utilizing add_filter() contained in the theme’s capabilities.php file so we are able to add them once more when we have to.

We’d additionally must filter out hyperlinks for the area the positioning is working on – these inner hyperlinks do not want eradicating.

We need to take away the hyperlink however preserve the textual content contained in the hyperlink and output it with out a hyperlink surrounding it.

We’ve got made a begin however cannot determine how you can exclude inner hyperlinks or preserve the anchor textual content contained in the submit.

Any assist, code samples, recommendation, ideas or strategies are tremendously appreciated and I thanks prematurely.

add_filter( 'the_content', 'filter_the_content_in_the_main_loop' );

operate filter_the_content_in_the_main_loop( $content material ) {

    if ( is_single() ) {
      $content material = preg_replace( '/<a href="(.*?)">(.*?)</a>/', '', $content material );
    }

    return $content material;
}