این مشکل را نتونستم حل کنم و حتی نویسنده افزونه هم به من کمکی نکرد
افزونه subheading برای ساخت سرتیتر استفاده میشه . افزونه ساده و خوبیه اما یک خطا در سرور ایجا میکنه که بارها موجب مشکل در سرور آپاچی شده . خطا اینه :
PHP Warning: preg_replace(): Unknown modifier 'w' in /var/www/html/fa/wp-content/plugins/subheading/subheading.php on line 491
فایل هم اینه البته بخشی که ایراد گرفته میشه :
483:function search( $where )
484: {
485: if ( is_search() ) {
486: global $wpdb, $wp;
487: $where = preg_replace(
488: "/($wpdb->posts.post_title (LIKE
'%{$wp->query_vars['s']}%'))/i",
489: "$0 OR ( $wpdb->postmeta.meta_value LIKE '%{$wp->query_vars['s']}%' )",
490: $where
491: );
492:
493: add_filter( 'posts_join_request', array( &$this, 'search_join' ) );
}
495: return $where;