philip75
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Next Gen to display images horizontallylike that one:
http://www.piajanebijkerk.com/interior-photography/[ Please do not bump, it’s not permitted here. ]
Forum: Fixing WordPress
In reply to: Next Gen to display images horizontalysorry, not at the right spot
Forum: Themes and Templates
In reply to: Modify postsThanks for your help!
Forum: Themes and Templates
In reply to: Modify postsThe file template-blog.php seems to be the right file. Unfortunately if I remove the functions, it creates an error on my site. Can You tell me what I need to remove exactly please? Thanks
<?php if (have_posts()) : while ( have_posts() ) : the_post(); $i++; ?>
<div id=”post-<?php the_ID() ?>” class=”post entry<?php echo $i == 1 ? ‘ first’ : ”; ?>”>
<h2 class=”post-title”><span class=”day”><?php the_time(‘d’);?></span><span class=”month”><?php the_time(‘M’); ?></span><?php $iwak->the_post_link(get_the_title()); ?></h2><?php if($src = $iwak->get_post_image_url(array(640, 240))): ?>
” href=”<?php echo get_permalink(); ?>”>
<img class=”thumbnail” src=”<?php echo $src; ?>” />
<?php endif; ?><div class=”post-content”><?php $iwak->the_content(array(‘more_text’=>__(‘Continue Reading’, THEME_NAME))); ?></div>
<div class=”post-meta”>
<?php _e(‘Posted by ‘, THEME_NAME); the_author_posts_link();
_e(‘ in ‘, THEME_NAME); echo get_the_category_list(‘, ‘);
if(comments_open()) {
_e(‘, Followed with ‘, THEME_NAME);
comments_popup_link( __(‘0 Comment’, THEME_NAME), __(‘1 Comment’, THEME_NAME), __(‘% Comments’, THEME_NAME) );
}
//edit_post_link( __( ‘edit’, THEME_NAME ), ‘(‘, ‘)’ ); ?>
</div>
</div>
<?php endwhile; ?>Forum: Themes and Templates
In reply to: Modify postsI found the “posted by” and “continue reading” in index.php but when I remove the info they are still displayed on the site
Forum: Themes and Templates
In reply to: Modify postsI can’t find any of these information in page.php file:
<?php get_header(); echo ‘</div>’; // close #background ?>
<div id=”container”>
<div class=”inner”><div id=”content”>
<?php the_post(); ?><div id=”post-<?php the_ID() ?>” class=”single page”>
<h1 class=”post-title super-heading”><?php the_title() ?></h1>
<div class=”post-content”>
<?php $iwak->the_content() ?>
</div>
</div><!– .post –>
<?php comments_template() ?></div><!– #content –>
<div id=”archive-sidebar” class=”sidebar”>
<?php iwak_get_sidebar(‘Page Sidebar’); ?>
</div><div class=”clear”></div>
</div><!– .inner –>
</div><!– #container –><?php get_footer() ?>