Forums

Help me integrate last news with maing page (9 posts)

  1. Evollution
    Member
    Posted 1 year ago #

    my website main page : http://fifago.com/
    my website wp page: http://fifago.com/news/
    so i want to be able to include only last 5 news [posts] on my main page http://fifago.com/ is this posible ?

  2. MAS
    Member
    Posted 1 year ago #

    Yes. It is possible.

    <?php
    $temp = $wp_query;
    $wp_query = null;
    $wp_query= new WP_Query('category_name=news&showposts=5&order=DESC');
    while(have_posts()): the_post();
    // put the code according to your design
    
    endwhile;
    $wp_query = $temp;
    $temp = null;
    
    ?>

    Try this.

  3. Evollution
    Member
    Posted 1 year ago #

    Fatal error: Class 'WP_Query' not found in /home/public_html/theme/fmd/frontpage.php on line 64 :(

  4. MAS
    Member
    Posted 1 year ago #

    http://fifago.com/ is not a wordpress site. For that reason my code would not work on this site. Write there the custom sql.

  5. Evollution
    Member
    Posted 1 year ago #

    yep , as i sayed http://fifago.com/news/ here i installed wordPress but the main page is using my person system

    Write there the custom sql. ? I dont understand what you want to say

  6. MAS
    Member
    Posted 1 year ago #

    Connect to the wordpress database and pick up data from there table using custom sql syntax.

  7. Evollution
    Member
    Posted 1 year ago #

    is not an easier way:)? no one ever tried to do this ,to not bother and I :D

  8. Rev. Voodoo
    Volunteer Moderator
    Posted 1 year ago #

    http://www.corvidworks.com/articles/wordpress-content-on-other-pages

    its perfectly easy, I use this code to show my 10 latest posts on non-WP page

  9. Evollution
    Member
    Posted 1 year ago #

    ok i tried this method but i am getting an error :(

    Warning: Cannot modify header information - headers already sent by (output started at /home/fifagoc1/public_html/theme/fmd/html.php:54) in /home/fifagoc1/public_html/news/wp-includes/functions.php on line 3125
    Error establishing a database connection

Topic Closed

This topic has been closed to new replies.

About this Topic