Support » Plugin: Disable Embeds » Disable all URL and Make them plain texts only

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Pascal Birchler

    (@swissspidy)

    Hey there,

    This is not something the plugin would do, but you can easily change this in a plugin of your own or the functions.php file of your theme. Here’s an example:

    function my_disable_link_embed( $output, $url ) { return $url; }
    add_filter( 'embed_maybe_make_link', 'my_disable_link_embed', 10, 2 );

    Opened a new ticket.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Disable all URL and Make them plain texts only’ is closed to new replies.