__( 'Main Sidebar', 'anymags-story' ),
'id' => 'sidebar-1',
'description' => __( 'Widgets in this area will be shown on all posts and pages.', 'anymags-story' ),
'before_widget' => '
',
'after_widget' => '',
'before_title' => '',
) );
}
add_action( 'widgets_init', 'wpdocs_theme_slug_widgets_init' );
}
add_action('wp_enqueue_scripts','anymags_story_enqueue_scripts');
function wpse_filter_excerpt_length( $length ) {
if ( is_front_page() ) {
return 28; // change this to number of words you want on homepage.
} else {
return $length;
}
}
add_filter( 'excerpt_length', 'wpse_filter_excerpt_length', 999 );
function as_story_theme_setup() {
// Adds tag support
add_theme_support( 'title-tag');
}
add_action('after_setup_theme', 'as_story_theme_setup');