مرتضی جان کارهایی که انجام دادم رو می نویسم اینجا، هر کدوم اشتباه بود راهنمایی کنید. با تشکر.
1- نصب اسکرایپت
اسکریپت TimThumb.php را از لینک داده شده دانلود کردم.
در فولدر Theme سایت، یک فولدر جدید به اسم scripts ساختم.
yourdomain.com/wp-content/themes/your-theme/scripts/timthumb.php
در فولدر scripts، یک فولدر جدید به اسم “cache” ساختم.
yourdomain.com/wp-content/themes/your-theme/scripts/cache/
دسترسی تمام فولدرهای بالا عدد 777 گذاشته شد.
02. افزودن اسکرایپت به قالب سایت
در فایل Index.php مربوط به Theme به دنبال Loop گشتم. (شاید اینجا رو اشتباه کرده باشم)
این خط رو پیدا کردم :
ارسال شده توسط <a href="#"> <?php the_author() ?> </a> در تاریخ <?php the_time('F j, Y') ?>
و این کد رو در زیرش قرار دادم :
<?php // This will show only the image. Alter the width and height (in both places) to your needs. ?>
<?php if ( get_post_meta($post->ID, 'thumb', true) ) { ?>
<div class="postthumb">
<img src="<?php bloginfo('template_directory'); ?>/scripts/timthumb.php?src=<?php echo get_post_meta($post->ID, "thumb", $single = true); ?>&h=150&w=150&zc=1" alt="<?php the_title(); ?>" width="100" height="57" />
</div>
<?php } ?>
در نهایت بخشی از Index.php به این صورت شد:
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><h1>
<?php the_title(); ?>
</h1></a>
<div class="clear"></div>
<div class="box-post-sub">
ارسال شده توسط <a href="#"> <?php the_author() ?> </a> در تاریخ <?php the_time('F j, Y') ?>
</div>
<div class="clear"></div>
<?php // This will show only the image. Alter the width and height (in both places) to your needs. ?>
<?php if ( get_post_meta($post->ID, 'thumb', true) ) { ?>
<div class="postthumb">
<img src="<?php bloginfo('template_directory'); ?>/scripts/timthumb.php?src=<?php echo get_post_meta($post->ID, "thumb", $single = true); ?>&h=150&w=150&zc=1" alt="<?php the_title(); ?>" width="100" height="57" />
</div>
<?php } ?>
در نهایت این خط رو بجای یک عکس در ادیتور گذاشتم.
<img src="/scripts/timthumb.php?src=http://www.winbeta.net/wp-content/uploads/2009/06/iPhone_3GS.jpg&h=150&w=150&zc=1" alt="" />
اما عکسی نمایش داده نشد.