You can create pages to display posts of one category and then display that page.
<?php
/*
Template Name: AnyCategory /*Give it the category name */
*/
get_header();
do_action( ‘__fp_block’ );
do_action( ‘__breadcrumb’ );
?>
<div class=”container” role=”main”>
<div class=”row”>
<?php query_posts(‘cat=3’); ?> /*Put the Category ID here */
<?php
do_action( ‘__sidebar’ , ‘left’ );
do_action( ‘__loop’ );
do_action( ‘__sidebar’ , ‘right’ );
?>
</div><!–#row –>
</div><!– #container –>
<?php
get_footer();
?>
Hi, I want to change slider H1 to H2 but cannot find parts/class-content-slider.php. I see a file in parts/class-header-slider.php but it doesnt have the said code.
Thanks
Oh.. I got it. Had to changed <h1 <?php echo $color_style ?>><?php echo $title ?></h1> to <h2 <?php echo $color_style ?>><?php echo $title ?></h2>