klippert
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to put ads next to contentWhere would I put that in the wp code
Forum: Fixing WordPress
In reply to: How to edit archive/blog page to show full postsi put <?php the_content(); ?> in and just loaded my page and nothing is different
Forum: Fixing WordPress
In reply to: How to edit archive/blog page to show full postsi have this now `<?php
$posts_to_show = 100; //Max number of articles to display
$debut = 0; //The first article to be displayed
?>
<?php while(have_posts()) : the_post(); ?>
<h2><?php the_title(); ?></h2><?php the_content(); ?>
<ul>
<?php
$myposts = get_posts(“numberposts=$posts_to_show&offset=$debut”);
foreach($myposts as $post) :
?>
<li><a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a></li><?php endforeach; ?>
</ul><?php endwhile; ?>`
where do i add this code and am i just supposed to leave whats inside the parentheses blankForum: Fixing WordPress
In reply to: How to edit archive/blog page to show full postsThank you oh and do you guys know how to do the next button thing I talked about
Forum: Fixing WordPress
In reply to: Blog PageOh okay thank you I better understand now
Forum: Fixing WordPress
In reply to: Blog PageI guess I’m not understanding. the Page that link sent me to is about creating a static homepage with teasers, but I want to keep the homepage I have, but add a new page named blog that shows every post that I have made
Forum: Fixing WordPress
In reply to: Blog PageNo I do not have a static Page, and I have written about 8 posts so far but I want a Page on my website that will have every post I have on it. The homepage only has my recent 3 lik I set It to.
Forum: Fixing WordPress
In reply to: Blog PageI do not have a blog page