wp_rel_nofollow_callback [ WordPress Function ]
wp_rel_nofollow_callback ( $matches )
| Parameters: |
|
| Returns: |
|
| Defined at: |
|
Benzer Fonksiyonlar: wp_rel_nofollow, _wp_kses_split_callback, _sort_name_callback, wp_pre_kses_less_than_callback, _wp_dashboard_control_callback
Callback to used to add rel=nofollow string to HTML A element.
Will remove already existing rel="nofollow" and rel='nofollow' from the string to prevent from invalidating (X)HTML.
Examples [ wp-snippets.com ]
Google Arama Sonuçlarý
- #9959 (wp_rel_nofollow_callback adds too many rel/nofollow ...
if you insert a link in a comment, like: <a href="foo" rel="bar nofollow">. wp_rel_nofollow_callback() turns that into: <a href="foo" rel="bar nofollow" rel=" nofollow"> ...
core.trac.wordpress.org - wp_rel_nofollow_callback() WordPress function reference ...
Callback to used to add rel=nofollow string to HTML A element.
queryposts.com - Nofollow For Category Links No Plugin Required ...
$text = stripslashes($text); $text = preg_replace_callback('|<a>|i', ' wp_rel_nofollow_callback', $text); return $text; } add_filter('the_category',' tbm_rel_nofollow') ...
techbasedmarketing.com - Avoid rel=”nofollow” on wordpress how to | axew3.com
Jul 16, 2010 ... function wp_rel_nofollow_callback( $matches ) { immediately after this line ADD the following code: // START hack to avoid administrators ...
www.axew3.com