Advertisement
mbis

functions.php

Dec 6th, 2018
288
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2.  
  3. /*
  4.  Theme Name:   Shopress Child
  5.  Description:  Shopress Child Theme
  6.  Author:       Linus Näslund
  7.  Template:     shopress
  8.  Version:      1.0.0
  9.  Text Domain:  shopress-child
  10. */
  11.  
  12. function shopress_child_enqueue_styles() {
  13.     wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
  14.  
  15. }
  16. add_action('wp_enqueue_scripts', 'shopress_child_enqueue_styles');
  17.  
  18. function shopress_force_404() {
  19.   global $post, $wp_query;
  20.  
  21.   if(is_singular('product') || is_product_category()) {
  22.     $wp_query->set_404();
  23.     status_header(404);
  24.   }
  25. }
  26. add_action('wp', 'shopress_force_404');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement