محتوى المقالة
إخفاء
ربما الكثير من مستخدمي منصة التدوين الشهيرة الووردبريس لا يرغب في العبارة الموضحة بالصورة السابقة
12345 You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>او بالعربيةيمكنك استخدام أكواد HTML والخصائص التالية: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>
لذلك ستجد طريقتين لإزالة تلك العبارة أدناه يمكنك اختيار احدهما لإزالتها بشكل نهائي :
الطريقة الاولى
افتح ملف style.css الخاص بقالبك الذي تستخدمه , ثم ابحث عن (form-allowed-tags) ستجده كالتالي
1 2 3 4 |
.form-allowed-tags { word-wrap: break-word; white-space: inherit; } |
اضف إليه الوسم ( display:none; ) ليصبح كالتالي :
1 2 3 4 5 |
.form-allowed-tags { word-wrap: break-word; white-space: inherit; display:none; } |
وستجد ان الاكواد اختفت .
الطريقة الثانية
قم بتحرير ملف functions.php الخاص بقالبك واضف في نهايته الكود التالي :
1 2 3 4 5 6 7 8 9 |
function mytheme_init() { add_filter('comment_form_defaults','mytheme_comments_form_defaults'); } add_action('after_setup_theme','mytheme_init'); function mytheme_comments_form_defaults($default) { unset($default['comment_notes_after']); return $default; } |