LoginSignup
0
0

More than 5 years have passed since last update.

WordPress: 本文やコメントのURLに対する自動リンクを停止する【functions.php】

Posted at

本文に書いたURLが自動的にリンク化されるのを停止したい場合は下記

functions.php
/**
 * 本文中URLの自動リンク化を停止
 */
remove_filter('the_content', 'make_clickable');

コメントに含まれるURLが自動的にリンク化されるのを停止したい場合は下記

/**
 * コメント中URLの自動リンク化を停止
 */
remove_filter('comment_text', 'make_clickable');
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0