Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <?php
  2. add_action( 'wp_enqueue_scripts', 'enqueue_child_theme_styles', PHP_INT_MAX);
  3. function enqueue_child_theme_styles() {
  4. wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
  5. wp_enqueue_style( 'child-style', get_stylesheet_uri(), array('parent-style') );
  6. }
  7.  
  8.  
  9. function create_posttype() {
  10.  
  11. register_post_type( 'spotlight',
  12.  
  13. array(
  14. 'labels' => array(
  15. 'name' => __( 'Spotlight' ),
  16. 'singular_name' => __( 'Spotlight' )
  17. ),
  18. 'public' => true,
  19. 'has_archive' => true,
  20. 'rewrite' => array('slug' => 'spotlight'),
  21. 'supports' => array( 'title', 'editor', 'excerpt', 'author', 'thumbnail', 'comments', 'revisions', 'custom-fields', ),
  22. )
  23. );
  24. }
  25. add_action( 'init', 'create_posttype' );
  26.  
  27. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement