Hi,
I Have Problem In My VideoFlick Theme V2.4
Thumbs Arent Shown
My Single.php File
And When I Try To Show Them They Are Showed With Actual Size ( Large)
I Need Loop To Insert Timthumb Into Single File
I Have Already Thumbnails Dir IN Wp-Content And Perm 777
And Have All Images But All Are Big
I Need Them 150*150 Like
Thanks
I Have Problem In My VideoFlick Theme V2.4
Thumbs Arent Shown
My Single.php File
PHP:
<?php get_header(); ?>
<div id="contentwrap">
<div id="maincontent">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="galleryitem" id="post-<?php the_ID(); ?>">
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><img src="<?php if ( function_exists('p75GetThumbnail') )echo p75GetThumbnail($post->ID); ?>(int $postID, [int $height, [int $wight, [string $fileType]]])" alt="<?php the_title(); ?>" /></a>
<h3><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title2('', '...', true, '20') ?></a></h3>
<div class="commentsnumber">
<a href="<?php the_permalink() ?>#comments" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php comments_number('0', '1', '%'); ?></a>
</div>
<p><?php the_content_rss('', TRUE, '', 25); ?></p>
</div>
<?php endwhile; ?>
<div id="pagenavi">
<div id="older" class="alignleft"><?php next_posts_link('Older Entries') ?></div>
<div id="newer" class="alignright"><?php previous_posts_link('Newer Entries') ?></div>
</div>
<?php else : ?>
<h2 class='center'>No posts found</h2>
<?php endif; ?>
</div> <!-- maincontent -->
<?php get_sidebar(); ?>
</div> <!-- contentwrap -->
<?php get_footer(); ?>
And When I Try To Show Them They Are Showed With Actual Size ( Large)
I Need Loop To Insert Timthumb Into Single File
I Have Already Thumbnails Dir IN Wp-Content And Perm 777
And Have All Images But All Are Big
I Need Them 150*150 Like
Thanks