Forum Replies Created

Viewing 1 replies (of 1 total)
  • Sorry to ask again but I am having trouble finding this.

    In my dashboard I went to Appearance > Editor then on the right under templates, “Core.php”

    My post-formats section looks like this:

    function suevafree_setup() {
    
    	add_theme_support( 'post-formats', array( 'aside','gallery','quote','video','audio','link' ) );
    	add_theme_support( 'automatic-feed-links' );
    	add_theme_support( 'post-thumbnails' );
    
    	add_image_size( 'blog', 940,429, TRUE );
    	add_image_size( 'large', 449,304, TRUE );
    	add_image_size( 'medium', 290,220, TRUE );
    	add_image_size( 'small', 211,150, TRUE ); 
    
    	register_nav_menu( 'main-menu', 'Main menu' );
    
    	add_theme_support( 'custom-background', array(
    		'default-color' => 'f3f3f3',
    		'default-image' => get_template_directory_uri() . suevafree_setting('suevafree_body_background'),
    	) );
    
    }
    
    add_action( 'after_setup_theme', 'suevafree_setup' )

    Where am I supposed to insert the code above?

Viewing 1 replies (of 1 total)