beammeupscotty
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Add date and author’s nameI am trying to get the date and Authors name like this
https://psd.tutsplus.com/
The red bit !Forum: Fixing WordPress
In reply to: Add date and author’s nameDidn’t let me post that link……..so heres the address
https://www.addictivehobby.com/wordpress/Forum: Fixing WordPress
In reply to: Add date and author’s nameOkay- did what you said and still not working- heres the code
<?php get_header(); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post();
$thumb = get_post_meta($post->ID, ‘Thumbnail’, $single = true);
?><div class=”post” id=”post-<?php the_ID(); ?>”>
<div class=”pic fl”>
<?php if($thumb !== ”) { ?><?php the_author_posts_link() ?><?php the_time(‘F jS, Y’) ?>
” title=”<?php the_title(); ?>”><img src=”<?php echo $thumb; ?>” alt=”<?php the_title(); ?>” /><?php } else { echo ”; } ?>
</div>
<p class=”meta-nfo”><?php the_author_posts_link(); ?> / <?php the_category(‘, ‘) ?> / <?php comments_popup_link(‘No Comments’, ‘1 Comment’, ‘% Comments’); ?></p>
<h2>” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”><?php the_title(); ?></h2>
<?php the_content(); ?>
<div class=”fix”></div>
</div><?php endwhile; ?>
<?php if(function_exists(‘wp_pagenavi’)) { wp_pagenavi(); } ?>
<?php else : ?>
<h2>Not Found</h2>
<p>Sorry, but you are looking for something that isn’t here.</p><?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: Add date and author’s nameHi MichaelH- did what you said, but it still doesn’t show in the posts…..
Plus this is my index.php file of the current active theme I am using<?php get_header(); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post();
$thumb = get_post_meta($post->ID, ‘Thumbnail’, $single = true);
?><div class=”post” id=”post-<?php the_ID(); ?>”>
<div class=”pic fl”>
<?php if($thumb !== ”) { ?><?php the_author() ?>
” title=”<?php the_title(); ?>”><img src=”<?php echo $thumb; ?>” alt=”<?php the_title(); ?>” />
<?php } else { echo ”; } ?>
</div>
<p class=”meta-nfo”><?php the_author_posts_link(); ?> / <?php the_category(‘, ‘) ?> / <?php comments_popup_link(‘No Comments’, ‘1 Comment’, ‘% Comments’); ?></p>
<h2>” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”><?php the_title(); ?></h2>
<?php the_content(); ?>
<div class=”fix”></div>
</div><?php endwhile; ?>
<?php if(function_exists(‘wp_pagenavi’)) { wp_pagenavi(); } ?>
<?php else : ?>
<h2>Not Found</h2>
<p>Sorry, but you are looking for something that isn’t here.</p><?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: Images not showing on front page postsDouble thanks !!!
Forum: Fixing WordPress
In reply to: Images not showing on front page postsThanks….this helped !
But I not sure what this means(). Then edit each post and insert the <!– more tag –> where you want your posts’ excerpts/teasers to finish.