- When listing the posts by categories, how can I change the symbol “[...]” and make it a link to the Permanent link of the post similar to the main index page? وعند ذكر هذه الوظائف من قبل فئات ، كيف يمكنني تغيير الرمز "[...]"وجعله على صلة وصله دائمة من وظيفة مماثلة الى صفحة فهرس الرئيسية؟
- Open theloop.php (using Presentation/Theme Editor) and look for: Theloop.php المفتوحه (باستخدام عرض / تحرير الموضوع) وأبحث عن :
<?php if (is_archive() or is_search()) { the_excerpt(); } else { the_content("Continue reading '" . the_title('', '', false) . "'"); } ?> <؟ اذا بي. اتش. بى (is_archive () او is_search ()) (the_excerpt () ؛) والا (the_content ( "مواصلة القراءة". the_title ( ''،'' ، كاذبة). "'")؛)؟>Change it to: تغييره الى :
<?php if (is_search()) { the_excerpt(); } else { the_content("Continue reading '" . the_title('', '', false) . "'"); } ?> <؟ اذا بي. اتش. بى (is_search ()) (the_excerpt () ؛) والا (the_content ( "مواصلة القراءة". the_title ( ''،'' ، كاذبة). "'")؛)؟>If you want to change it to simply Read more >> then use: اذا اردت ان تغير لأنها ببساطة أقرأ المزيد>> ثم الاستخدام :
<?php if (is_search()) { the_excerpt(); } else { the_content("Read more >>"); } ?> <؟ اذا بي. اتش. بى (is_search ()) (the_excerpt () ؛) والا (the_content ( "أقرأ المزيد>>")؛)؟>If you do not want this ([...]) even in search page then use this: اذا كنت لا تريد ([...])حتى في هذا البحث ، ثم استخدام هذه الصفحه :
<?php the_content("Continue reading '" . the_title('', '', false) . "'"); ?> <؟ بي. اتش. بى the_content ( "مواصلة القراءة". the_title ( ''،'' ، كاذبة). "'")؛؟> - When listing the posts by categories, the links doesn´t appear. وعند ذكر هذه الوظائف من قبل فئات ، لا يبدو ان الصلات. Why the links are not activated ? لماذا لا يتم تفعيل الروابط؟
- In categories and search view, by default, the excerpt is shown which doesn’t display the links. بحث في فئات والرأي ، افتراضيا ، ويبين المقتطف التي لا يتم عرض الصلات. Follows the steps above (question 1) to solve this. يلي الخطوات المذكورة اعلاه (السؤال 1) من هذه الازمة. It takes care of both the problems. انها تحرص كل المشاكل.

































