Advertisement
rickyc81

Untitled

Sep 5th, 2019
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.11 KB | None | 0 0
  1. // function.php
  2.  
  3. <?php
  4.  
  5.   function music_setup_theme(){
  6.     add_theme_support('title-tag');
  7.     add_theme_support('post-thumbnails');
  8.  
  9.     add_image_size( 'music-big', 1400, 800, true );
  10.     add_image_size( 'music-quad', 600, 600, true );
  11.     add_image_size( 'music-single', 800, 500, true );
  12.  
  13.     register_nav_menus( array(
  14.       'header' => esc_html__('Header', 'music'),
  15.     ));
  16.  
  17.   };
  18.  
  19.   add_action( 'after_setup_theme', 'music_setup_theme' );
  20.  
  21.  
  22.  ?>
  23.  
  24. // index.php
  25.  
  26. <?php get_header(); ?>
  27. <div id="main-content" class="main-content">
  28.     <div id="content" class="content-area" role="main">
  29.     </div><!-- #content -->
  30. </div><!-- #main-content -->
  31. <?php get_footer(); ?>
  32.  
  33.  
  34. // header.php
  35.  
  36. <!DOCTYPE html>
  37. <html <?php language_attributes(  ); ?> >
  38. <head>
  39.   <meta charset="">
  40.   <meta name="viewport" content="width=device-width, initial-scale=1.0">
  41.   <meta http-equiv="X-UA-Compatible" content="ie=edge">
  42.   <?php wp_head(); ?>
  43. </head>
  44. <body>
  45. <header>
  46.     <h1>Header</h1>
  47. </header>
  48.  
  49.  
  50. // footer.php
  51.  
  52.  
  53.         <footer>
  54.  
  55.             <h2> Footer </h2>
  56.  
  57.         </footer>
  58.  
  59.         <?php wp_footer(); ?>
  60.  
  61.     </body>
  62. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement