Title: Configurate
Last modified: August 21, 2016

---

# Configurate

 *  Resolved [dutx12](https://wordpress.org/support/users/dutx12/)
 * (@dutx12)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/configurate-1/)
 * Hello
 * I need some help to configurate my blog.
 * I need to see the post posted in 4 colunms
 * [Like This](https://dl.dropboxusercontent.com/u/22047877/tph.jpg)
 * this is the actual aspect of my [blog](http://todoprensa.hostinazo.com/)
 * i have grid-post.php but i dont know how can configurate it.
 * Regards

Viewing 15 replies - 1 through 15 (of 17 total)

1 [2](https://wordpress.org/support/topic/configurate-1/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/configurate-1/page/2/?output_format=md)

 *  Theme Author [nobita](https://wordpress.org/support/users/nobita/)
 * (@nobita)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/configurate-1/#post-4609190)
 * Hi dutx12
 * Please test below page template
 * [https://gist.github.com/tenman/8986621](https://gist.github.com/tenman/8986621)
 * snapshot
 * [http://tenman.info/labo/snip/files/raindrops-tile.png](http://tenman.info/labo/snip/files/raindrops-tile.png)
 * Thank you.
 *  Thread Starter [dutx12](https://wordpress.org/support/users/dutx12/)
 * (@dutx12)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/configurate-1/#post-4609197)
 * I will try now, please confirm the steps:
 * 1 copy, paste and save the code as grid-post.php
 * upload grid-post.php file in /public_html/wp-content/themes/raindrops
 * is this correct??
 * Thank you very much
 *  Thread Starter [dutx12](https://wordpress.org/support/users/dutx12/)
 * (@dutx12)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/configurate-1/#post-4609198)
 * I think that I’m doing something wrong.
 * I keep seeing the web as before the changes
 *  Theme Author [nobita](https://wordpress.org/support/users/nobita/)
 * (@nobita)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/configurate-1/#post-4609200)
 * change filename from grid-post.php to test.php
 * create page
 * Page Attribute MetaBox Template select ‘test’
 * submit
 *  Thread Starter [dutx12](https://wordpress.org/support/users/dutx12/)
 * (@dutx12)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/configurate-1/#post-4609201)
 * I have these categories
 * “Sport”
    “National Press”
 * what is the code to separate the magazines by “Categories”?
 * [sample](https://dl.dropboxusercontent.com/u/22047877/sample.png)
 *  Theme Author [nobita](https://wordpress.org/support/users/nobita/)
 * (@nobita)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/configurate-1/#post-4609257)
 * function raindrops_tile() is using get_posts,
 * The extraction conditions, please refer to the following
    [http://codex.wordpress.org/Template_Tags/get_posts](http://codex.wordpress.org/Template_Tags/get_posts)
 * example
 *     ```
       $args = array(
                'category' => 'category id', // Add Sport category ID( National Press ID)
       			'posts_per_page'  => 12,
       			'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' => 4,//columns 2-4
       			);
       ```
   
 *  Thread Starter [dutx12](https://wordpress.org/support/users/dutx12/)
 * (@dutx12)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/configurate-1/#post-4609269)
 * I put that code
 * Sorry, doesnt works, The category are:
    Nationals: 4 Sports: 3 Computers: 7 Revistas:
   5
 * I put 7 (Computers) But appears “All category”
 * [Capture](https://dl.dropboxusercontent.com/u/22047877/captuer2.jpg)
 * Can you send me the code o the file grid-post.php
 *     ```
       <?php
       /** raindrops_tile( )
        *
        *
        *
        *
        */
       	$args = array(
                		'category' => '7'// Add Sport category ID( National Press ID)
       			'posts_per_page'  => 12,
       			'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' => 4,//columns 2-4
       			);
       	raindrops_tile( $args );
       ?>
       ```
   
 *  Theme Author [nobita](https://wordpress.org/support/users/nobita/)
 * (@nobita)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/configurate-1/#post-4609270)
 *     ```
       'category' => '7'// Add Sport category ID( National Press ID)
       ```
   
 * change below( add comma )
 *     ```
       'category' => '7', // Add Sport category ID( National Press ID)
       ```
   
 * Thank you.
 *  Thread Starter [dutx12](https://wordpress.org/support/users/dutx12/)
 * (@dutx12)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/configurate-1/#post-4609271)
 * I dont know why, but the configuration dosent work 🙁
 * [http://todoprensa.hostinazo.com/](http://todoprensa.hostinazo.com/)
 * [Caputer](https://dl.dropboxusercontent.com/u/22047877/errorgrid.jpg)
 * mayby is the host “hostinazo.com”??
 *  Thread Starter [dutx12](https://wordpress.org/support/users/dutx12/)
 * (@dutx12)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/configurate-1/#post-4609272)
 * OK, i change the hosting, and this is the results
 * i put this [configuration](https://dl.dropboxusercontent.com/u/22047877/conf1.jpg)
 * whit this [result](https://dl.dropboxusercontent.com/u/22047877/RESULT1.jpg)
 * i change the code whit [this](https://dl.dropboxusercontent.com/u/22047877/conf2.jpg)
 * And this is the [result](https://dl.dropboxusercontent.com/u/22047877/RESULT2.jpg)
 * What I need is that after 12 results in category “National” appears 12 other 
   results of the category “Sports”
 * thank you for all
 *  Theme Author [nobita](https://wordpress.org/support/users/nobita/)
 * (@nobita)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/configurate-1/#post-4609287)
 *     ```
       <?php
       /** raindrops_tile( )
        *
        *
        *
        *
        */
       	$args = array(
       			'category' => '7',
       			'posts_per_page'  => 12,
       			'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' => 4,//columns 2-4
       			);
       	raindrops_tile( $args );
       // add below
       /** raindrops_tile( )
        *
        *
        *
        *
        */
       	$args = array(
       			'category' => '5',
       			'posts_per_page'  => 12,
       			'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' => 4,//columns 2-4
       			);
       	raindrops_tile( $args );
       ?>
       ```
   
 * and Add to style.css below last line.
 *     ```
       .portfolio-nav{
       	display:none;
       }
       ```
   
 * raindrops_tile() using twice when can not work page navigation.
 *  Thread Starter [dutx12](https://wordpress.org/support/users/dutx12/)
 * (@dutx12)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/configurate-1/#post-4609300)
 * yesssssssssss, you are very GREAT¡¡¡ The page works fine.
 * I need configurate one pair of more things
 * In the top of the each category a TITLE
    for example: SPORTS
 * Some space between each post, maybe 0,5 cm
 * [Example](https://dl.dropboxusercontent.com/u/22047877/FINALCONF.jpg)
 *  Theme Author [nobita](https://wordpress.org/support/users/nobita/)
 * (@nobita)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/configurate-1/#post-4609303)
 * add h2 html element first `raindrops_tile( $args );` after
 * like below
 *     ```
       raindrops_tile( $args );
       ?>
       <h2 class="portfolio-category-title h2">SPORTS</h2>
       <?php
       /** raindrops_tile( )
        *
        *
        *
        *
        */
       	$args = array(
       ```
   
 * add to style.css below style rules
 *     ```
       .portfolio-nav{
       	display:none;
       }
       /* add below */
       #portfolio li{
       	width:23%;
       	margin:1%;
       }
       .portfolio-category-title{
       	text-indent:1em;
       }
       ```
   
 * Thank you
 *  Thread Starter [dutx12](https://wordpress.org/support/users/dutx12/)
 * (@dutx12)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/configurate-1/#post-4609305)
 * Yessssss¡¡¡ Great¡¡¡
 * To move or delete the menus???
 * [image](https://dl.dropboxusercontent.com/u/22047877/menu.jpg)
 *  Theme Author [nobita](https://wordpress.org/support/users/nobita/)
 * (@nobita)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/configurate-1/#post-4609307)
 * adminbar edit page click
 * edit page( text tab click)
 * Add content textarea below
 *     ```
       <!--[raindrops color_type="dark" col="1"]-->
       ```
   
 * and add to style.css last line below
 *     ```
       .page-id-24641 .rsidebar,
       .page-id-24641 .lsidebar{
       	display:none!important;
       }
       ```
   
 * need config .page-id-24641 ( 24641 is your page id )
 * Thank you.

Viewing 15 replies - 1 through 15 (of 17 total)

1 [2](https://wordpress.org/support/topic/configurate-1/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/configurate-1/page/2/?output_format=md)

The topic ‘Configurate’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/raindrops/1.700/screenshot.png)
 * raindrops
 * [Support Threads](https://wordpress.org/support/theme/raindrops/)
 * [Active Topics](https://wordpress.org/support/theme/raindrops/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/raindrops/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/raindrops/reviews/)

## Tags

 * [dutx12](https://wordpress.org/support/topic-tag/dutx12/)

 * 17 replies
 * 2 participants
 * Last reply from: [dutx12](https://wordpress.org/support/users/dutx12/)
 * Last activity: [12 years, 1 month ago](https://wordpress.org/support/topic/configurate-1/page/2/#post-4609329)
 * Status: resolved