Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. // Enable Custom Logo
  2. add_theme_support( 'custom-logo', array(
  3. 'height' => 200,
  4. 'width' => 400,
  5. 'flex-width' => true,
  6. ) );
  7.  
  8. $old_logo = get_theme_mod( 'header_logo' );
  9. if ( $old_logo ) {
  10.  
  11. wp_enqueue_style( 'wpse_89494_style_3', get_template_directory_uri() . '/your-style_3.css' );
  12.  
  13. }
  14.  
  15. if ( ! has_custom_logo() ) {
  16. // Enqueue some google fonts
  17. wp_enqueue_style( 'google-fonts', 'https://fonts.googleapis.com/css?family=Roboto:400' );
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement