Ashley Cameron Design

Ashley Cameron Design

Shop the Creative Design Market

Good evening

Add rel attribute to Tinymce Editor

SnippetsWordPress

About a 1 minute read

"Not until we are lost do we begin to understand ourselves."

Henry David Thoreau


1
2
3
4
5
6
7
8
9
//add rel tag to tinymce editor
add_filter('the_content', 'addreltag');
function addreltag($content) {
global $post;
$pattern ="/<pre>/i";
$replacement = '<pre rel="'.$post->post_title.'"$6>';
$content = preg_replace($pattern, $replacement, $content);
return $content;
}