Advertisement
websupporter

Site-Logo Support in header.php

Mar 2nd, 2016
1,713
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. <header>
  2.     <?php
  3.         //Da die Funktion erst ab Version 4.5 verfügbar ist
  4.         //lohnt es sich einen Fallback für ältere WP Versionen einzubauen
  5.         if( function_exists( 'the_site_logo' ) ):
  6.             the_site_logo();
  7.         else:
  8.             echo 'Fallback';
  9.         endif;
  10.     ?>
  11. </header>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement