remote - How to remove fresh posts (latest news) on the main page?

admin2025-06-04  1

Closed. This question is off-topic. It is not currently accepting answers.

Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be better asked at Stack Overflow or another appropriate Stack Exchange network site. Third-party plugins and themes are off-topic for this site; they are better asked about at their developers' support routes.

Closed 6 years ago.

Improve this question

How to remove fresh posts (latest news) on the main page? I can't find how to remove the "fresh posts"(latest news), I don't need it. Themes the Virtue. Tell me please. Thank you in advance. See below pictures.


Closed. This question is off-topic. It is not currently accepting answers.

Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be better asked at Stack Overflow or another appropriate Stack Exchange network site. Third-party plugins and themes are off-topic for this site; they are better asked about at their developers' support routes.

Closed 6 years ago.

Improve this question

How to remove fresh posts (latest news) on the main page? I can't find how to remove the "fresh posts"(latest news), I don't need it. Themes the Virtue. Tell me please. Thank you in advance. See below pictures.


Share Improve this question asked Jan 4, 2019 at 11:30 Sergey KizievSergey Kiziev 311 silver badge6 bronze badges 11
  • Are you use ready made theme or custom theme ? – Pratik Patel Commented Jan 4, 2019 at 11:35
  • @PratikPatel, I don't know.. how to find out? Just install own from /wp-admin/theme-install.php?browse=featured – Sergey Kiziev Commented Jan 4, 2019 at 11:37
  • Please go to your admin panel and open Pages option and find HOME page and check once if there is option for this section – Pratik Patel Commented Jan 4, 2019 at 11:39
  • @PratikPatel, Home not found - scr: here – Sergey Kiziev Commented Jan 4, 2019 at 11:43
  • @PratikPatel, this is a custom theme not for ready made theme. – Sergey Kiziev Commented Jan 4, 2019 at 11:51
 |  Show 6 more comments

2 Answers 2

Reset to default 1

Solution to the problem. Very simple! Go to admin panel yoursite/wp-admin > Appearance > Theme Settings > Homepage Layout > The Layout Manager homepage > all Enabled to Disabled. Done! Now your Homepage is clean.

Here is a screenshot, I hope you understand. Have a nice day :)

From what I understand you want to remove the entire section outlined in red on your picture?

To do that, go into the admin > appearance > editor. Then on the right, find home.php and click it to edit the file.

Remove the following code from the file and click "Update File" to save...

<?php if ( !have_posts() ) : ?>
    <div class="alert">
        <?php esc_html_e( 'Sorry, no results were found.', 'virtue' ); ?>
    </div>
    <?php get_search_form(); 
endif; 

if( $summary == 'full' ){
    while (have_posts()) : the_post(); 
        get_template_part( 'templates/content', 'fullpost' ); 
    endwhile; 
} else {
    while (have_posts()) : the_post(); 
        get_template_part( 'templates/content', get_post_format() );
    endwhile; 
}

/**
* @hooked virtue_pagination - 10
*/
do_action( 'virtue_pagination' );
?>

Important Note

This will make an edit directly to your theme. A better way to do this is to make a CHILD THEME, then edit the file there. This will prevent you from losing any edits when your theme updates.

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1749042107a315863.html

最新回复(0)