/home/sitetest/makie/homedir/public_html/wp-content/themes/formlab
Edit: /home/sitetest/makie/homedir/public_html/wp-content/themes/formlab/functions.php (1461B)
'Site Footer About',
'id' => 'sidebar-0',
'before_widget' => '
',
'after_widget' => '
',
) );
register_sidebar( array(
'name' => 'Site Header Social',
'id' => 'sidebar-1',
'before_widget' => '
',
'after_widget' => '
',
) );
register_sidebar( array(
'name' => 'Projects Category Filter',
'id' => 'sidebar-2',
'before_widget' => '
',
'after_widget' => '
',
) );
register_sidebar( array(
'name' => 'Projects Tag Filter',
'id' => 'sidebar-3',
'before_widget' => '
',
'after_widget' => '
',
) );
}
// For Featured Image.
add_action( 'widgets_init', 'arphabet_widgets_init' );
if ( function_exists( 'add_theme_support' ) ) {
add_theme_support( 'post-thumbnails', array( 'post', 'page', 'product' ) );
}
// For the Block Editor.
add_action( 'after_setup_theme', 'my_theme_setup' );
function my_theme_setup() {
add_editor_style();
add_theme_support( 'editor-styles' );
}
//Excerpt Length
function custom_excerpt_length( $length ) {
return 30;
}
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
//Disabling Widget Block Editior
function example_theme_support() {
remove_theme_support( 'widgets-block-editor' );
}
add_action( 'after_setup_theme', 'example_theme_support' );
?>