重写wp自带的模板顺序

Published
2022-12-02
浏览次数 :  166

add_filter( 'template_include', 'bn_custom_template', 99 );
function bn_custom_template( $template ) {

  if ( is_front_page() && is_home() ) {

    return PATH_TO_YOUR_FILE . 'template-filename.php';

  }

  // Return the default template otherwise
  return $template;
}

Top