Advertisement
comic0

functions-custom.php

Sep 15th, 2015
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.44 KB | None | 0 0
  1. <?php
  2.  
  3. // Register Custom Post Type
  4. function init_function()
  5. {
  6.  
  7. }
  8. add_action( 'init', 'init_function', 0 );
  9.  
  10.  
  11. // Enqueue script and style
  12. function custom_enqueue()
  13. {
  14.     wp_enqueue_script( 'google-maps-api', 'https://maps.googleapis.com/maps/api/js?libraries=places' );
  15.     wp_enqueue_style( 'main-style', get_template_directory_uri().'/css/screen.css', array(), '2013-07-18' );
  16. }
  17. add_action( 'wp_enqueue_scripts', 'custom_enqueue' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement