Viewing 3 replies - 1 through 3 (of 3 total)
  • A good starting point will be using and interacting with WP_Query https://codex.www.ads-software.com/Class_Reference/WP_Query

    Hope this helps!

    Hi,

    Just add this code to your page.php page

    <?php

    while ( have_posts() ) : the_post();

    get_template_part( ‘content’, ‘page’ );

    if ( comments_open() || get_comments_number() ) {
    comments_template();
    }
    endwhile;
    ?>

    Thread Starter rasta_wdpr

    (@rasta_wdpr)

    not sure exactly what you mean…. here is a better explanation…

    these are the files i have in my theme as seen in the appearance editor:

    Design_v6 Page Template
    (fineart_page.php)

    Footer
    (footer.php)

    Theme Functions
    (functions.php)

    Header
    (header.php)

    Main Index Template
    (index.php)
    ———————————–

    i have a page called news — > https://rossow-web.com/news/

    that i want my posts to appear on….

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘adding 'posts' to a custom theme’ is closed to new replies.