sof613
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to change the thumbnail in recent posts.Thank you , but i am trying to change the size of the actual rectangle box. How can i do it ?
Forum: Fixing WordPress
In reply to: read more with a thumbnailbump
Forum: Fixing WordPress
In reply to: read more with a thumbnailthank you , but im looking with help for html code . i think code is the key here
Forum: Fixing WordPress
In reply to: read more with a thumbnailill try to make it more clear .
i am trying to make a thumbnail with a picture and it should have a “readmore” option to have the whole post . (there is a picture in my post).
When i have –
<?php the_content_limit(400, “[“.__(‘Read more’));?><div style=”clear:both;”></div>
then i only have a “readmore” option and picture goes away , but when i take away limit 400 and make it look like this –
<?php the_content(__(‘Read more’));?><div style=”clear:both;”></div>
then i have a picture but i see the whole post without “readmore” option. i want to have a thumbnail next to a short version post with a “readmore opion”.can anyone help ? thank youForum: Fixing WordPress
In reply to: Home Categoryany help?
Forum: Fixing WordPress
In reply to: Post a Commentany help ?
Forum: Everything else WordPress
In reply to: categories read morebump
Forum: Fixing WordPress
In reply to: How to remove articlesthank you
Forum: Fixing WordPress
In reply to: How to remove articleskidsallergy.org thank you
Forum: Fixing WordPress
In reply to: articles on templatekidsallergy.org
thank youForum: Themes and Templates
In reply to: How to remove “readmore”thank you so much , worked like magic !!!!!!
Forum: Themes and Templates
In reply to: How to remove “readmore”thank you , i dont know much about html . my index.php did not have the_excerts in it , here is my home.php i found read more in it . can someone tell me what to change in here, thank you
<?php get_header(); ?>
<div id=”homepage”>
<div id=”contentleft”>
<div class=”postarea”>
<?php if (function_exists(‘gallery_styles’)) : ?>
<div id=”fcg”>
<?php include (ABSPATH . ‘/wp-content/plugins/featured-content-gallery/gallery.php’); ?>
</div><?php endif; ?>
<div class=”aheadline”>
<h3><?php echo cat_id_to_name(get_theme_mod(‘featured_top_left’)); ?></h3>
</div><div class=”clear”></div>
<?php $recent = new WP_Query(“cat=”.get_theme_mod(‘featured_top_left’).”&showposts=”.get_theme_mod(‘featured_top_left_num’)); while($recent->have_posts()) : $recent->the_post();?>
<?php if( get_post_meta($post->ID, “thumb”, true) ): ?>
” rel=”bookmark”><img class=”thumb” src=”<?php bloginfo(‘template_directory’); ?>/tools/timthumb.php?src=<?php echo get_post_meta($post->ID, “thumb”, $single = true); ?>&h=<?php echo get_theme_mod(‘featured_top_left_thumb_height’); ?>&w=<?php echo get_theme_mod(‘featured_top_left_thumb_width’); ?>&zc=1″ alt=”<?php the_title(); ?>” />
<?php else: ?>
<?php endif; ?><h1>” rel=”bookmark”><?php the_title(); ?></h1>
<?php the_content_limit(400, “[“.__(“Read more”, ‘studiopress’).”]”); ?><hr/>
<?php endwhile; ?>
” rel=”bookmark”><?php _e(“Read More Posts From This Category”, ‘studiopress’); ?>
</div>
</div>
<?php include(TEMPLATEPATH.”/sidebar.php”);?>
</div>
<?php //The main column ends ?>
<?php get_footer(); ?>