Title: aakraak's Replies | WordPress.org

---

# aakraak

  [  ](https://wordpress.org/support/users/aakraak/)

 *   [Profile](https://wordpress.org/support/users/aakraak/)
 *   [Topics Started](https://wordpress.org/support/users/aakraak/topics/)
 *   [Replies Created](https://wordpress.org/support/users/aakraak/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/aakraak/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/aakraak/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/aakraak/engagements/)
 *   [Favorites](https://wordpress.org/support/users/aakraak/favorites/)

 Search replies:

## Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Buttons backend not responding, css missing](https://wordpress.org/support/topic/buttons-backend-not-responding-css-missing/)
 *  Thread Starter [aakraak](https://wordpress.org/support/users/aakraak/)
 * (@aakraak)
 * [1 year, 11 months ago](https://wordpress.org/support/topic/buttons-backend-not-responding-css-missing/#post-17876303)
 * All sounds good, but I think this is a server issue. I will contact my hosting
   provider.
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[WP Fast Total Search - The Power of Indexed Search] Did not use it, but good service from develeoper](https://wordpress.org/support/topic/do-not-buy-this-plugin-11/)
 *  Thread Starter [aakraak](https://wordpress.org/support/users/aakraak/)
 * (@aakraak)
 * [4 years, 12 months ago](https://wordpress.org/support/topic/do-not-buy-this-plugin-11/#post-14592751)
 * Thank you for the refund!
    -  This reply was modified 4 years, 12 months ago by [aakraak](https://wordpress.org/support/users/aakraak/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy WP SMTP – WordPress SMTP and Email Logs: Gmail, Office 365, Outlook, Custom SMTP, and more] unable to send test email contact form 7 microsoft office easy wp smtp](https://wordpress.org/support/topic/unable-to-send-test-email-contact-form-7-microsoft-office-easy-wp-smtp/)
 *  Thread Starter [aakraak](https://wordpress.org/support/users/aakraak/)
 * (@aakraak)
 * [6 years ago](https://wordpress.org/support/topic/unable-to-send-test-email-contact-form-7-microsoft-office-easy-wp-smtp/#post-12903457)
 * The host even put a special spf record in place, but nothing works.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy WP SMTP – WordPress SMTP and Email Logs: Gmail, Office 365, Outlook, Custom SMTP, and more] unable to send test email contact form 7 microsoft office easy wp smtp](https://wordpress.org/support/topic/unable-to-send-test-email-contact-form-7-microsoft-office-easy-wp-smtp/)
 *  Thread Starter [aakraak](https://wordpress.org/support/users/aakraak/)
 * (@aakraak)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/unable-to-send-test-email-contact-form-7-microsoft-office-easy-wp-smtp/#post-12839203)
 * Yes ofcourse. I first tried the troubleshooting. My hosting is PCextreme.nl
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Display most recent posts on static homepage -no content](https://wordpress.org/support/topic/display-most-recent-posts-on-static-homepage-no-content/)
 *  Thread Starter [aakraak](https://wordpress.org/support/users/aakraak/)
 * (@aakraak)
 * [16 years, 5 months ago](https://wordpress.org/support/topic/display-most-recent-posts-on-static-homepage-no-content/#post-1349920)
 * Yess! I found the solution myself!
 * Do the following.
 * – Download this plugin [nurelm-get-posts.0.2](http://wordpress.org/extend/plugins/nurelm-get-posts/)
 * 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 &raquo;'); ?>
            </div>
        <?php endforeach; ?>
       ```
   
 * Hope this helps anyone!

Viewing 5 replies - 1 through 5 (of 5 total)