Advertisement
websupporter

Site-Logo Support in functions.php

Mar 2nd, 2016
1,710
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. <?php  
  2. function theme_site_logo_support() {
  3.     add_theme_support( 'site-logo', array( 'size' => 'logo-size' ) );
  4. }
  5. add_action( 'after_setup_theme', 'function theme_site_logo_support' );
  6. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement