Below are some of the quick customizations I use for Base WP theme on my website.
· Main layout for Posts and SideBar
· Update /public_html/wp-content/themes/base-wp/css/grid.css with below changes under @media (min-width: 992px) section:
o Set .col8 width: 76%;
o Set .col4 width: 24%;
· Update /public_html/wp-content/themes/base-wp/css/grid.min.css with below changes in @media (min-width:992px) section:
o Set .col8{width:76%}
o Set .col4{width:24%}
· Upload them to the Hosting
· Update Footer Details in below File /public_html/wp-content/themes/base-wp/core-framework/func/function-action.php
o //credits
o function igthemes_footer_credits() { ?>
o <div class=”credits”>
o <div class=”grid”>
o <div class=”row”>
o <div class=”col12″>
o <?php igthemes_footer_gotop();?>
o <?php printf( esc_html__( ‘Proudly powered by ‘, ‘Own Theme’ )); ?><a href=”<?php echo esc_url( __( ‘http://wordpress.org/’, ‘Own Theme’ ) ); ?>”><?php printf( __( ‘%s’, ‘Own Theme’ ), ‘WordPress’ ); ?></a>
o <span class=”sep”> | </span>
o <?php printf( esc_html__( ‘Theme: Own Theme.’, ‘Govardhan Gunnala’ ),wp_get_theme()->get( ‘Name’ ), ‘<a href=”https://gunnalag.com/” rel=”designer”>Govardhan Gunnala</a>’ ); ?>
o </div><!– .col12 –>
o </div><!– .row –>
o </div><!– .grid –>
o </div><!– .credits –>
o <?php }
o add_action( ‘igthemes_footer’ , ‘igthemes_footer_credits’ );
· 404 – Page Not Found File – Add below content
o <?php the_widget( ‘WP_Widget_Recent_Posts’ ); ?>
o
o <?php if ( base_categorized_blog() ) : // Only show the widget if site has multiple categories. ?>
o <div class=”widget widget_categories”>
o <h2 class=”widgettitle”><?php _e( ‘Most Used Categories’, ‘base’ ); ?></h2>
o <ul>
o <?php
o wp_list_categories( array(
o ‘orderby’ => ‘count’,
o ‘order’ => ‘DESC’,
o ‘show_count’ => 1,
o ‘title_li’ => ”,
o ‘number’ => 10,
o ) );
o ?>
o </ul>
o </div><!– .widget –>
o <?php endif; ?>
o
o <?php
o /* translators: %1$s: smiley */
o $archive_content = ‘<p>’ . sprintf( __( ‘Try looking in the monthly archives. %1$s’, ‘base’ ), convert_smilies( ‘:)’ ) ) . ‘</p>’;
o the_widget( ‘WP_Widget_Archives’, ‘dropdown=1’, “after_title=</h2>$archive_content” );
o ?>
o
o <?php the_widget( ‘WP_Widget_Tag_Cloud’ ); ?>
·
<
p class=”MsoListParagraph” style=”margin: 0in 0in 0pt 0.5in; line-height: normal; text-indent: -0.25in; mso-list: l0 level1 lfo1″>·