Title: home posts
Last modified: August 31, 2016

---

# home posts

 *  [Isaiasmd](https://wordpress.org/support/users/isaiasmd/)
 * (@isaiasmd)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/home-posts/)
 * Hi,
    I need to edit the home post: how to delete the […] at the end of the home
   posts? How can i change the fonts and size of this items? Thanks you

Viewing 5 replies - 1 through 5 (of 5 total)

 *  Thread Starter [Isaiasmd](https://wordpress.org/support/users/isaiasmd/)
 * (@isaiasmd)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/home-posts/#post-7013328)
 * Im talking about Oblique theme
 *  Thread Starter [Isaiasmd](https://wordpress.org/support/users/isaiasmd/)
 * (@isaiasmd)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/home-posts/#post-7013368)
 * anyone?
 *  [WEN Solutions](https://wordpress.org/support/users/wen-solutions/)
 * (@wen-solutions)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/home-posts/#post-7013489)
 * HI [@isaiasmd](https://wordpress.org/support/users/isaiasmd/)
 * **You can change font and its size by going to customize section of your theme.**
   
   1. First go to your Dashboard -> Appearance -> Customize -> Fonts. 2. In this
   Fonts section you can change font as well as size.
 * **You can remove […] at the home post by creating and customizing child them.**
   
   1. To create child theme visit [ here ](https://codex.wordpress.org/Child_Themes)
   2. Now in functions.php file in child theme add the following code:
 *     ```
       function childtheme_remove_filters(){
         remove_filter( 'excerpt_more', 'oblique_excerpt_more');
   
       }
       add_action( 'after_setup_theme', 'childtheme_remove_filters' );
   
       function oblique_excerpt_more_child( $more ) {
         $excerpt = get_theme_mod('exc_lenght', '35');
         if ($excerpt == '0') {
             return '';
         } else {
           return '[...]';
         }
       }
       add_filter('excerpt_more', 'oblique_excerpt_more_child');
       ```
   
 * 3.You can change **return ‘[…]’;** to **return ‘ ‘;** if you don’t want anything
   to display.
    4. Now activate child theme. Report if your issue is not solved.
 * Best Regards!!!
 *  Thread Starter [Isaiasmd](https://wordpress.org/support/users/isaiasmd/)
 * (@isaiasmd)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/home-posts/#post-7013583)
 * It works!! Thank you WEN
    Best regards!
 *  Thread Starter [Isaiasmd](https://wordpress.org/support/users/isaiasmd/)
 * (@isaiasmd)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/home-posts/#post-7013585)
 * and do you know how to change the background color for an custom image for this
   main theme (oblique)?

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘home posts’ is closed to new replies.

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

 * 5 replies
 * 2 participants
 * Last reply from: [Isaiasmd](https://wordpress.org/support/users/isaiasmd/)
 * Last activity: [10 years, 4 months ago](https://wordpress.org/support/topic/home-posts/#post-7013585)
 * Status: not resolved