Support » Theme: puddle » How to remove the 3 post in the frontpage??

  • Resolved Brad

    (@leak2u)


    Hello there good sir.:)

    I’m wondering on how to remove the 3 post on the frontpage.Just want to show my post on the frontpage.The post showing “stick man” need to be adjusted.

    Thnx.:)

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author nobita

    (@nobita)

    Hi Brad

    Please open home.php and remove below line:55

    <?php
    /** raindrops_tile( )
     *
     *
     *
     *
     */
    	$args = array(
    			'posts_per_page'  => 3,
    			'numberposts'     => -1,
    			'orderby'         => 'post_date',
    			'order'           => 'DESC',
    			'post_type'       => 'post',
    		//	'meta_key'        => '_thumbnail_id', //Shows only has post thumbnail
    			'post_status'     => 'publish',
    			'post__not_in'    => get_option( 'sticky_posts' ),
    			'raindrops_tile_col' => 3,//columns 2-4
    			);
    	raindrops_tile( $args );
    ?>

    Thank you

    Thread Starter Brad

    (@leak2u)

    Thank you sir!:)

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to remove the 3 post in the frontpage??’ is closed to new replies.