add_filter('the_content', 'my_addlightboxrel');
function my_addlightboxrel($content) {
       global $post;
       $pattern ="//i";
       $replacement = '';
       $content = preg_replace($pattern, $replacement, $content);
       return $content;
}  
anılan kod dizisini şu şekilde değiştirsek çalışır mı ?
add_filter('the_content', 'my_addlightboxrel');
function my_addlightboxrel($content) {
       global $post;
       $pattern ="/![]() /i";
/i";
       $replacement = '!['.$post->post_title.']() ';
';
       $content = preg_replace($pattern, $replacement, $content);
       return $content;
}  
Şu anda dairedeyim siteme girip deneyemiyorum. Unutmadan bu konuyu yazıyım dedim.
 
  
