kalponikoronno

La revisión

Jul 15th, 2021 (edited)
669
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.17 KB | None | 0 0
  1. https://make.wordpress.org/themes/handbook/review/required/theme-tags/
  2.  
  3. https://docs.emmet.io/cheat-sheet/
  4.  
  5. <?php body_class(); ?>
  6.  
  7. <?php get_header(); ?>
  8. <?php get_footer(); ?>
  9.  
  10. <?php wp_head(); ?>
  11. <?php wp_footer(); ?>
  12.  
  13. <?php
  14. function load_scripts(){
  15.     wp_enqueue_style('marks-theme', get_template_directory_uri().'/css/template.css', array(), '', 'all');
  16. }
  17. add_action('wp_enqueue_scripts', 'load_scripts');
  18. ?>
  19.  
  20.  
  21. function load_scripts(){
  22.     wp_enqueue_style('bootstrap', '//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css', array(), '4.0.0', 'all');
  23.     wp_enqueue_style('marks-theme', get_template_directory_uri().'/css/template.css', array(), '', 'all');
  24.  
  25.     wp_enqueue_script( 'popper-js', '//cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js', array(), '4.0.0', 'all' );
  26.     wp_enqueue_script( 'bootstrap-js', '//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js', array(), '4.0.0', 'all' );
  27.     wp_enqueue_script( 'main-js', get_template_directory_uri().'/js/main.js', array(), '1.0', true );
  28. }
  29. add_action('wp_enqueue_scripts', 'load_scripts');
  30.  
  31.  
  32.  
  33. <meta name="viewport" content="width=device-width, initial-scale=1.0">
Add Comment
Please, Sign In to add comment