aakraak
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Fixing WordPress
In reply to: Buttons backend not responding, css missingAll sounds good, but I think this is a server issue. I will contact my hosting provider.
Thank you for the refund!
- This reply was modified 3 years, 5 months ago by aakraak.
The host even put a special spf record in place, but nothing works.
Yes ofcourse. I first tried the troubleshooting. My hosting is PCextreme.nl
Forum: Fixing WordPress
In reply to: Display most recent posts on static homepage -no contentYess! I found the solution myself!
Do the following.
– Download this plugin nurelm-get-posts.0.2
past this piece of code into your html:
<?php $postslist = get_posts('numberposts=10&order=ASC&orderby=title'); foreach ($postslist as $post) : setup_postdata($post); ?> <div> <?php the_date(); ?> <br /> <?php the_title(); ?> <?php the_excerpt(); ?> </div> <?php endforeach; ?>
custimized as desired. My piece of code
looks like this, because I want the h1 to look like I want to and I want the whole content to show up instead of just the_excerpt!<?php $postslist = get_posts('numberposts=1&order=ASC&orderby=title'); foreach ($postslist as $post) : setup_postdata($post); ?> <div> <h1 class="kop_home"><?php the_title(); ?> </h1> <?php the_content('Read the rest of this entry »'); ?> </div> <?php endforeach; ?>
Hope this helps anyone!
Viewing 5 replies - 1 through 5 (of 5 total)