WordPress page same as home page Programming Web Development by prince.sayeed1381 …special-offers"> <h1><?php esc_html_e( '', 'StyleShop' ); ?></h1> <div id="offers"…( get_the_ID(), '_et_offer_button_text', true ) ) && '' != $et_custom_button ? $et_custom_button : __( 'Read More', 'StyleShop' ); ?> <li class="offer_li"> <?php… Re: WordPress page same as home page Programming Web Development by EvolutionFallen Check the WordPress Codex and look into creating a custom WP Loop using query_posts(). Your page is the Updates page, so when you do `if(have_posts())` it will check what the content is for that page (i.e., what's in the textarea for that page in the WP backend). You need a custom loop since you want to pull in specific blog posts, rather than Page…