blackhatdamo
Registered Member
- Apr 6, 2012
- 86
- 27
Hi everyone I could do with a little help please.
I would like to do this http://www.creativdesigns.com/blog/
I want post snippets on a page that link to the full post that has its own page. How would I do this in wordpress?
I have tried setting a static homepage in the settings>reading section, but doing this messes up the website so this isn't an option for me.
I have also searched google for countless hours without any success
I have tried:
and
both of these show what I have written on the blog page but dont show my posts at all
the code in my blog.php file is
any help would be greatly appreciated as I am coming close to cracking now.
Thanks in advance
also if this is the wrong forum please can a mod move to the correct one ThankYou
I would like to do this http://www.creativdesigns.com/blog/
I want post snippets on a page that link to the full post that has its own page. How would I do this in wordpress?
I have tried setting a static homepage in the settings>reading section, but doing this messes up the website so this isn't an option for me.
I have also searched google for countless hours without any success
I have tried:
Code:
<?php if (have_posts()) : while (have_posts()) : the_post();?>
<?php the_content(); ?>
<?php endwhile; endif; ?>
and
Code:
<?php if(have_posts()): ?><?php while(have_posts()): the_post(); ?> >
<div class="post" id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<div class="entry">
<?php the_excerpt(); ?>
both of these show what I have written on the blog page but dont show my posts at all
the code in my blog.php file is
Code:
<?php
/*
Template Name: blog
*/
?>
<?php get_header(); ?>
<div class="row">
<div class="large-12 columns pad">
<?php if (have_posts()) : while (have_posts()) : the_post();?>
<?php the_excerpt(); ?>
<?php the_post(); ?>
<?php endwhile; endif; ?>
</div>
</div>
<?php get_footer(); ?>
any help would be greatly appreciated as I am coming close to cracking now.
Thanks in advance
also if this is the wrong forum please can a mod move to the correct one ThankYou