لا يجتاج جوجل لشاهدتي في أنه غير وجه الإنترنت ..
في الرابط التالي مجموعة من الخصائص الخاصة بجوجل بالعربي..
http://www.google.com/intl/ar/help/features.html
أما هذا الرابط فيحوي خدمات أكثر ولكن باللغة الإنجليزية:
لا يجتاج جوجل لشاهدتي في أنه غير وجه الإنترنت ..
في الرابط التالي مجموعة من الخصائص الخاصة بجوجل بالعربي..
http://www.google.com/intl/ar/help/features.html
أما هذا الرابط فيحوي خدمات أكثر ولكن باللغة الإنجليزية:
قد تظن أنها من أفلام الخيال العلمي..
شاهد وقل سبحان الله
الموضوع رائع وموجود على الرابط التالي:
There are two theme files to be edited:
index.phpandstyle.css. I have just edited the default Kubrick theme, so adjust this to suit your own theme.The basic idea is to add a “switch” so WordPress knows if you’re looking at a post which will appear in the first or second column.
In
index.phpI added code in four places:Before the WordPress loop starts:
<?php $col = 1; ?>I.e. we set up the switch to start off in the first column.
Just after the WordPress loop starts:
<?php if ($col == 1) echo "<div class="row">"; ?>Start a new row if we’re in the left hand column.
Inside the WordPress loop:
Add in the switch:
<div class="post col<?php echo $col;?>" id="post-<?php the_ID(); ?>">I.e. I added in
col<?php echo $col;?>to the post’s class. We’ll use CSS to decide how to display posts in each column.Just before the end of the WordPress loop:
Change the switch and the row:
<?php if ($col == 1) echo "</div>"; (($col==1) ? $col=2 : $col=1); endwhile; ?>The WordPress loop ends with
endwhile.Just before this, I do two things: finish the row and I make
$colswitch between the first or second column. If you haven’t seen code like this before, this is what it’s doing:Are we in the first column?
Yes: Move to the second column.
No: Move to the first column.In
style.cssI added three lines of code at the very bottom:
.row { clear: both; }
.col1 { width: 200px; float: left; padding: 0 10px; }
.col2 { width: 200px; float: right; padding: 0 10px; }If you’re using a different theme, you may need to adjust the column widths and the amount of padding.
Using a row div forces the two posts to always line up with each other, even if the excerpts are different lengths.
بعد تفعيل widget من لوحة التحكم لأحد القوائم الجانبية sidebar قد تختفي التعديلات التي أضفتها كأوامر php لحل المشكلة إضف تعديلاتك بعد النص البرمجي:
<?php endif ?>
عند فتح صفحات الاستايل او الموقع الذي يعتمد الترميز utf8 وبعد التعديل عليه وحفظه ورفعه إلى الموقع قد تظهر مشكلة عدم ظهور الترميز بالشكل المناسب.
لحل هذه المشكلة اضغط على page properties الموجود اسفل الصفحة وقم بتغيير الترميز من title/encoding إلى utf8
كلمة الرئيسية يتم حفظها في ملف function.php .
ابحث عن :
function art_menu_items()
{
$homeMenuItemCaption = <<<EOD
الرئيسية
EOD;
استبدل كلمة الرئيسية بأي كلمة تريدها
من ملف style.css
ابحث عما يلي:
.artmenu li
{
margin: 0;
padding: 0;
border: 0;
display: block;
float: right;
position: relative;
z-index: 5;
background:none;
}
استبدله بالآتي:
.artmenu li
{
margin: 0;
padding: 0;
border: 0;
display: block;
float: right;
position: relative;
z-index: 5;
background:none;
}
تأكد من تغيير القيمة float: left إلى float: right .