Title: Posts Page
Last modified: December 16, 2016

---

# Posts Page

 *  [appliedarts](https://wordpress.org/support/users/appliedarts/)
 * (@appliedarts)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/posts-page-14/)
 * How can I change the appearance of the ‘posts’ page? I would like to have a sticky
   post at the top with subscription form etc; and post headings below that. Thanks!

Viewing 1 replies (of 1 total)

 *  Theme Author [nobita](https://wordpress.org/support/users/nobita/)
 * (@nobita)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/posts-page-14/#post-8564384)
 * Hi [@appliedarts](https://wordpress.org/support/users/appliedarts/)
 * Posts mean Archives , Categories ?
 * How to add your custom content on Arichves.
 * 1. Showing Your Archives page ( category )
 * 2. Click Adminbar Customize
 * 3. Select Advanced
 * 4. Set show. in Section ‘Developer Setting’
 * You will find several gray background blocks on the preview screen like below
 * > add_action( ‘raindrops_prepend_loop’, ‘your_function’ ) or add template part
   > file the name ‘hook-prepend-loop.php’.
 * Once you copy the block in your favorite place
 * 5. Set hide. in Section ‘Developer Setting’
 * You are now ready for customization.
 * You can use action hook
 * functions.php
 *     ```
       <?php
   
       add_action('raindrops_prepend_loop','my_raindrops_prepend_loop');
   
       function my_raindrops_prepend_loop(){
           if ( is_category() ) {
               echo 'Hello World';
           }
       }
       ?>
       ```
   
 * or create template file raindrops( or child theme dir ) / hook-prepend-loop.php
 *     ```
       <?php
       if ( is_category() ) {
               echo 'Hello World';
           }
       }
       ?>
       ```
   
 * Thank you.
    -  This reply was modified 9 years, 3 months ago by [nobita](https://wordpress.org/support/users/nobita/).

Viewing 1 replies (of 1 total)

The topic ‘Posts Page’ 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/)

 * 1 reply
 * 2 participants
 * Last reply from: [nobita](https://wordpress.org/support/users/nobita/)
 * Last activity: [9 years, 3 months ago](https://wordpress.org/support/topic/posts-page-14/#post-8564384)
 * Status: not resolved