Ashley Cameron Design

Ashley Cameron Design

Shop the Creative Design Market

Goodnight

Add rel attribute to Tinymce Editor

SnippetsWordPress

About a 1 minute read

"We cannot solve our problems with the same thinking we used when we created them."

Albert Einstein


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;
}