https://wordpress.org/plugins/news-ticker-benaceur/
ضع الكود التالي في ملف functions.php الخاص بقالبك المفعّل:
put this code in functions.php file of your active theme:
function ben_ntb_funct_filter_title( $title, $args, $post ) {
# 'd M Y H-i'| d/m/Y H-i
$format = is_rtl() ? 'Y/m/d' : 'd/m/Y';
$d = date_i18n( $format, strtotime( $post["post_date"] ) );
return sprintf( '%s: %s', $d, $title );
}
add_filter( 'ntb_title_filter_ben', 'ben_ntb_funct_filter_title', 10, 3 );
ولإظهار كاتب الموضوع غيّر هذا السطر:
To display the author change this line:
$d = date_i18n( 'd/m/Y', strtotime( $post["post_date"] ) );
إلى:
to:
$d = $args[1];
ولإظهار تاريخ آخر تعديل للموضوع عدل السطر إلى:
and to display the post modification date change to:
$d = date_i18n( 'd/m/Y', strtotime( $args[2] ) );
ولإظهار عدد تعليقات الموضوع عدّل السطر إلى:
and to display comment count change to:
$d = $args[3];
- إقرأ الموضوع كاملا …