ColoredCow / wordpress-init

Boilerplate code for a new WordPress Site
GNU General Public License v3.0
5 stars 5 forks source link

New features #9

Closed pokhiii closed 4 years ago

pokhiii commented 5 years ago
  1. Add theme support for custom logo
add_action( 'after_setup_theme', 'cc_theme_add_supports' );
function cc_theme_add_supports() {
    add_theme_support( 'custom-logo' );
    add_theme_support( 'align-wide' );
    add_theme_support( 'align-full' );
        add_theme_support( 'post-thumbnails' );
}
  1. Add 404.php and template for coming soon page