本文整理汇总了PHP中get_single_template函数的典型用法代码示例。如果您正苦于以下问题:PHP get_single_template函数的具体用法?PHP get_single_template怎么用?PHP get_single_template使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了get_single_template函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: getWpTemplate
function getWpTemplate()
{
if (defined('WP_USE_THEMES') && WP_USE_THEMES) {
$template = false;
if (is_404() && ($template = get_404_template())) {
} elseif (is_search() && ($template = get_search_template())) {
} elseif (is_tax() && ($template = get_taxonomy_template())) {
} elseif (is_front_page() && ($template = get_front_page_template())) {
} elseif (is_home() && ($template = get_home_template())) {
} elseif (is_attachment() && ($template = get_attachment_template())) {
} elseif (is_single() && ($template = get_single_template())) {
} elseif (is_page() && ($template = get_page_template())) {
} elseif (is_category() && ($template = get_category_template())) {
} elseif (is_tag() && ($template = get_tag_template())) {
} elseif (is_author() && ($template = get_author_template())) {
} elseif (is_date() && ($template = get_date_template())) {
} elseif (is_archive() && ($template = get_archive_template())) {
} elseif (is_comments_popup() && ($template = get_comments_popup_template())) {
} elseif (is_paged() && ($template = get_paged_template())) {
} else {
$template = get_index_template();
}
return str_replace(ABSPATH, '', $template);
} else {
return null;
}
}
开发者ID:jtomeck,项目名称:jtwebfolio,代码行数:27,代码来源:showThemeFile.php
示例2: post
public static function post($post_id)
{
wb_set('current_url', get_permalink($post_id));
query_posts(array('p' => $post_id, 'post_type' => 'post'));
the_post();
$template = get_single_template();
rewind_posts();
wb_link_hack(true);
include $template;
wb_link_hack(false);
wp_reset_query();
}
开发者ID:ascarius,项目名称:wordpress-bootstrap,代码行数:12,代码来源:Renderer.php
示例3: load_template
/**
* Copy-pasta of wp-includes/template-loader.php
*/
private function load_template()
{
do_action('template_redirect');
$template = false;
if (is_404() && ($template = get_404_template())) {
} elseif (is_search() && ($template = get_search_template())) {
} elseif (is_front_page() && ($template = get_front_page_template())) {
} elseif (is_home() && ($template = get_home_template())) {
} elseif (is_post_type_archive() && ($template = get_post_type_archive_template())) {
} elseif (is_tax() && ($template = get_taxonomy_template())) {
} elseif (is_attachment() && ($template = get_attachment_template())) {
remove_filter('the_content', 'prepend_attachment');
} elseif (is_single() && ($template = get_single_template())) {
} elseif (is_page() && ($template = get_page_template())) {
} elseif (is_category() && ($template = get_category_template())) {
} elseif (is_tag() && ($template = get_tag_template())) {
} elseif (is_author() && ($template = get_author_template())) {
} elseif (is_date() && ($template = get_date_template())) {
} elseif (is_archive() && ($template = get_archive_template())) {
} elseif (is_comments_popup() && ($template = get_comments_popup_template())) {
} elseif (is_paged() && ($template = get_paged_template())) {
} else {
$template = get_index_template();
}
/**
* Filter the path of the current template before including it.
*
* @since 3.0.0
*
* @param string $template The path of the template to include.
*/
if ($template = apply_filters('template_include', $template)) {
$template_contents = file_get_contents($template);
$included_header = $included_footer = false;
if (false !== stripos($template_contents, 'get_header();')) {
do_action('get_header', null);
locate_template('header.php', true, false);
$included_header = true;
}
include $template;
if (false !== stripos($template_contents, 'get_footer();')) {
do_action('get_footer', null);
locate_template('footer.php', true, false);
$included_footer = true;
}
if ($included_header && $included_footer) {
global $wp_scripts;
$wp_scripts->done = array();
}
}
return;
}
开发者ID:danielbachhuber,项目名称:unholy,代码行数:55,代码来源:class-unholy-testcase.php
示例4: xsbf_is_fullwidth
function xsbf_is_fullwidth()
{
/* for pages, check the page template */
if (is_page() and (+is_page_template('page-fullpostsnoheader.php') or +is_page_template('page-fullwidth-noheader.php') or +is_page_template('page-fullwidth.php') or +is_page_template('page-fullwithposts.php') or +is_page_template('page-fullwithsubpages.php'))) {
return true;
/* for posts, check the single template */
} elseif (is_single()) {
$current_template = get_single_template();
$fullwidth_template = get_query_template('single-fullwidth');
if ($current_template and $current_template == $fullwidth_template) {
return true;
}
}
return false;
}
开发者ID:vedcraft,项目名称:vedcraft-theme,代码行数:15,代码来源:theme-functions.php
示例5: xtreme_get_template
function xtreme_get_template()
{
global $wp;
if (defined('WP_USE_THEMES') && constant('WP_USE_THEMES')) {
if (is_404() && ($template = get_404_template())) {
return redefine_pagenow($template);
} elseif (is_search() && ($template = get_search_template())) {
return redefine_pagenow($template);
} elseif (is_tax() && ($template = get_taxonomy_template())) {
return redefine_pagenow($template);
} elseif (is_front_page() && ($template = get_front_page_template())) {
return redefine_pagenow($template);
} elseif (is_home() && ($template = get_home_template())) {
return redefine_pagenow($template);
} elseif (is_attachment() && ($template = get_attachment_template())) {
return redefine_pagenow($template);
} elseif (is_single() && ($template = get_single_template())) {
return redefine_pagenow($template);
} elseif (is_page() && ($template = get_page_template())) {
return redefine_pagenow($template);
} elseif (is_category() && ($template = get_category_template())) {
return redefine_pagenow($template);
} elseif (is_tag() && ($template = get_tag_template())) {
return redefine_pagenow($template);
} elseif (is_author() && ($template = get_author_template())) {
return redefine_pagenow($template);
} elseif (is_date() && ($template = get_date_template())) {
return redefine_pagenow($template);
} elseif (is_archive() && ($template = get_archive_template())) {
return redefine_pagenow($template);
} elseif (is_comments_popup() && ($template = get_comments_popup_template())) {
return redefine_pagenow($template);
} elseif (is_paged() && ($template = get_paged_template())) {
return redefine_pagenow($template);
} else {
$template = get_index_template();
return redefine_pagenow($template);
}
}
}
开发者ID:katikos,项目名称:xtreme-one,代码行数:40,代码来源:xtreme-template-loader.php
示例6: choose_template
/**
* Get the fork's parent post, set up a query, and load correct template.
*
* Duplicates the functionality of /wp-includes/template-loader.php and includes
* a lot of copypasta, but that's only to ensure that it follows the same logic.
*
*/
function choose_template()
{
$p = get_queried_object_id();
if (get_post_type($p) !== 'fork') {
return;
}
$pp = get_post($p)->post_parent;
$parent = get_post($pp);
if ($parent->post_type == 'page') {
$query = array('page_id' => $pp);
} else {
$query = array('p' => $pp);
}
$t = new WP_Query($query);
$template = false;
if ($t->is_404() && ($template = get_404_template())) {
} elseif ($t->is_search() && ($template = get_search_template())) {
} elseif ($t->is_tax() && ($template = get_taxonomy_template())) {
} elseif ($t->is_front_page() && ($template = get_front_page_template())) {
} elseif ($t->is_home() && ($template = get_home_template())) {
} elseif ($t->is_attachment() && ($template = get_attachment_template())) {
remove_filter('the_content', 'prepend_attachment');
} elseif ($t->is_single() && ($template = get_single_template())) {
} elseif ($t->is_page && ($template = get_page_template())) {
} elseif ($t->is_category() && ($template = get_category_template())) {
} elseif ($t->is_tag() && ($template = get_tag_template())) {
} elseif ($t->is_author() && ($template = get_author_template())) {
} elseif ($t->is_date() && ($template = get_date_template())) {
} elseif ($t->is_archive() && ($template = get_archive_template())) {
} elseif ($t->is_comments_popup() && ($template = get_comments_popup_template())) {
} elseif ($t->is_paged() && ($template = get_paged_template())) {
} else {
$template = get_index_template();
}
if ($template = apply_filters('template_include', $template)) {
include $template;
}
return;
}
开发者ID:gopinathshiva,项目名称:wordpress-vip-plugins,代码行数:46,代码来源:preview.php
示例7: check_template
function check_template()
{
if (is_404() && ($template = get_404_template())) {
$this->template = $template;
} elseif (is_search() && ($template = get_search_template())) {
$this->template = $template;
} elseif (is_tax() && ($template = get_taxonomy_template())) {
$this->template = $template;
} elseif (is_home() && ($template = get_home_template())) {
$this->template = $template;
} elseif (is_attachment() && ($template = get_attachment_template())) {
$this->template = $template;
} elseif (is_single() && ($template = get_single_template())) {
$this->template = $template;
} elseif (is_page() && ($template = get_page_template())) {
$this->template = $template;
} elseif (is_category() && ($template = get_category_template())) {
$this->template = $template;
} elseif (is_tag() && ($template = get_tag_template())) {
$this->template = $template;
} elseif (is_author() && ($template = get_author_template())) {
$this->template = $template;
} elseif (is_date() && ($template = get_date_template())) {
$this->template = $template;
} elseif (is_archive() && ($template = get_archive_template())) {
$this->template = $template;
} elseif (is_comments_popup() && ($template = get_comments_popup_template())) {
$this->template = $template;
} elseif (is_paged() && ($template = get_paged_template())) {
$this->template = $template;
} else {
$this->template = function_exists('get_index_template') ? get_index_template() : TEMPLATEPATH . "/index.php";
}
$this->template = apply_filters('template_include', $this->template);
// Hook into the footer so we can echo the active template
add_action('wp_footer', array(&$this, 'show_template'), 100);
}
开发者ID:ksolomon,项目名称:Solo-Frame,代码行数:37,代码来源:show-template.php
示例8: templateLoad
public function templateLoad($defaultView = '')
{
global $posts, $post, $wp_did_header, $wp_query, $wp_rewrite, $wpdb, $wp_version, $wp, $id, $comment, $user_ID;
$content = '';
/**
* Loads the correct template based on the visitor's url
* @package WordPress
*/
if (defined('WP_USE_THEMES') && WP_USE_THEMES) {
do_action('template_redirect');
}
/**
* Filter whether to allow 'HEAD' requests to generate content.
*
* Provides a significant performance bump by exiting before the page
* content loads for 'HEAD' requests. See #14348.
*
* @since 3.5.0
*
* @param bool $exit Whether to exit without generating any content for 'HEAD' requests. Default true.
*/
if ('HEAD' === $_SERVER['REQUEST_METHOD'] && apply_filters('exit_on_http_head', true)) {
exit;
}
// Process feeds and trackbacks even if not using themes.
if (is_robots()) {
/**
* Fired when the template loader determines a robots.txt request.
*
* @since 2.1.0
*/
do_action('do_robots');
return $content;
} elseif (is_feed()) {
do_feed();
return $content;
} elseif (is_trackback()) {
include ABSPATH . 'wp-trackback.php';
return $content;
}
if (defined('WP_USE_THEMES') && WP_USE_THEMES) {
$template = false;
if (is_404() && ($template = get_404_template())) {
} elseif (is_search() && ($template = get_search_template())) {
} elseif (is_front_page() && ($template = get_front_page_template())) {
} elseif (is_home() && ($template = get_home_template())) {
} elseif (is_post_type_archive() && ($template = get_post_type_archive_template())) {
} elseif (is_tax() && ($template = get_taxonomy_template())) {
} elseif (is_attachment() && ($template = get_attachment_template())) {
remove_filter('the_content', 'prepend_attachment');
} elseif (is_single() && ($template = get_single_template())) {
} elseif (is_page() && ($template = get_page_template())) {
} elseif (is_category() && ($template = get_category_template())) {
} elseif (is_tag() && ($template = get_tag_template())) {
} elseif (is_author() && ($template = get_author_template())) {
} elseif (is_date() && ($template = get_date_template())) {
} elseif (is_archive() && ($template = get_archive_template())) {
} elseif (is_comments_popup() && ($template = get_comments_popup_template())) {
} elseif (is_paged() && ($template = get_paged_template())) {
} else {
$template = get_index_template();
}
/**
* Filter the path of the current template before including it.
*
* @since 3.0.0
*
* @param string $template The path of the template to include.
*/
if ($template = apply_filters('template_include', $this->defaultView ?: $template)) {
load_template($template, false);
}
return $content;
}
}
开发者ID:ycms,项目名称:module-main,代码行数:75,代码来源:MainController.php
示例9: if
include(ABSPATH . '/wp-feed.php');
exit;
} else if ( is_trackback() && empty($doing_trackback) ) {
include(ABSPATH . '/wp-trackback.php');
exit;
} else if ( is_404() && get_404_template() ) {
include(get_404_template());
exit;
} else if ( is_search() && get_search_template() ) {
include(get_search_template());
exit;
} else if ( is_home() && get_home_template() ) {
include(get_home_template());
exit;
} else if ( is_single() && get_single_template() ) {
include(get_single_template());
exit;
} else if ( is_page() && get_page_template() ) {
include(get_page_template());
exit;
} else if ( is_category() && get_category_template()) {
include(get_category_template());
exit;
} else if ( is_author() && get_author_template() ) {
include(get_author_template());
exit;
} else if ( is_date() && get_date_template() ) {
include(get_date_template());
exit;
} else if ( is_archive() && get_archive_template() ) {
include(get_archive_template());
开发者ID:staylor,项目名称:develop.svn.wordpress.org,代码行数:31,代码来源:wp-blog-header.php
示例10: test_switch_theme
/**
* @expectedDeprecated get_themes
* @expectedDeprecated get_current_theme
*/
function test_switch_theme()
{
$themes = get_themes();
// Switch to each theme in sequence.
// Do it twice to make sure we switch to the first theme, even if it's our starting theme.
// Do it a third time to ensure switch_theme() works with one argument.
for ($i = 0; $i < 3; $i++) {
foreach ($themes as $name => $theme) {
// switch to this theme
if ($i === 2) {
switch_theme($theme['Template'], $theme['Stylesheet']);
} else {
switch_theme($theme['Stylesheet']);
}
$this->assertEquals($name, get_current_theme());
// make sure the various get_* functions return the correct values
$this->assertEquals($theme['Template'], get_template());
$this->assertEquals($theme['Stylesheet'], get_stylesheet());
$root_fs = get_theme_root();
$this->assertTrue(is_dir($root_fs));
$root_uri = get_theme_root_uri();
$this->assertTrue(!empty($root_uri));
$this->assertEquals($root_fs . '/' . get_stylesheet(), get_stylesheet_directory());
$this->assertEquals($root_uri . '/' . get_stylesheet(), get_stylesheet_directory_uri());
$this->assertEquals($root_uri . '/' . get_stylesheet() . '/style.css', get_stylesheet_uri());
# $this->assertEquals($root_uri . '/' . get_stylesheet(), get_locale_stylesheet_uri());
$this->assertEquals($root_fs . '/' . get_template(), get_template_directory());
$this->assertEquals($root_uri . '/' . get_template(), get_template_directory_uri());
//get_query_template
// template file that doesn't exist
$this->assertEquals('', get_query_template(rand_str()));
// template files that do exist
//foreach ($theme['Template Files'] as $path) {
//$file = basename($path, '.php');
// FIXME: untestable because get_query_template uses TEMPLATEPATH
//$this->assertEquals('', get_query_template($file));
//}
// these are kind of tautologies but at least exercise the code
$this->assertEquals(get_404_template(), get_query_template('404'));
$this->assertEquals(get_archive_template(), get_query_template('archive'));
$this->assertEquals(get_author_template(), get_query_template('author'));
$this->assertEquals(get_category_template(), get_query_template('category'));
$this->assertEquals(get_date_template(), get_query_template('date'));
$this->assertEquals(get_home_template(), get_query_template('home', array('home.php', 'index.php')));
$this->assertEquals(get_page_template(), get_query_template('page'));
$this->assertEquals(get_paged_template(), get_query_template('paged'));
$this->assertEquals(get_search_template(), get_query_template('search'));
$this->assertEquals(get_single_template(), get_query_template('single'));
$this->assertEquals(get_attachment_template(), get_query_template('attachment'));
// this one doesn't behave like the others
if (get_query_template('comments-popup')) {
$this->assertEquals(get_comments_popup_template(), get_query_template('comments-popup'));
} else {
$this->assertEquals(get_comments_popup_template(), ABSPATH . 'wp-includes/theme-compat/comments-popup.php');
}
$this->assertEquals(get_tag_template(), get_query_template('tag'));
// nb: this probably doesn't run because WP_INSTALLING is defined
$this->assertTrue(validate_current_theme());
}
}
}
开发者ID:Benrajalu,项目名称:philRaj,代码行数:65,代码来源:theme.php
示例11: add_filter
/*
+----------------------------------------------------------------+
| |
| WordPress 2.8 Plugin: WP-EMail 2.50 |
| Copyright (c) 2009 Lester "GaMerZ" Chan |
| |
| File Written By: |
| - Lester "GaMerZ" Chan |
| - http://lesterchan.net |
| |
| File Information: |
| - E-Mail Post/Page To A Friend |
| - wp-content/plugins/wp-email/email-standalone.php |
| |
+----------------------------------------------------------------+
*/
### Session Start
@session_start();
### Filters
add_filter('wp_title', 'email_pagetitle');
add_action('loop_start', 'email_addfilters');
### We Use Page Template
if (file_exists(TEMPLATEPATH . '/email.php')) {
include TEMPLATEPATH . '/email.php';
} elseif (file_exists(TEMPLATEPATH . '/page.php')) {
include get_page_template();
} elseif (file_exists(TEMPLATEPATH . '/single.php')) {
include get_single_template();
} else {
include TEMPLATEPATH . '/index.php';
}
开发者ID:saatchidgs,项目名称:ourhouse,代码行数:31,代码来源:email-standalone.php
示例12: if
include(ABSPATH . 'wp-trackback.php');
return;
} else if ( is_404() && $template = get_404_template() ) {
include($template);
return;
} else if ( is_search() && $template = get_search_template() ) {
include($template);
return;
} else if ( is_home() && $template = get_home_template() ) {
include($template);
return;
} else if ( is_attachment() && $template = get_attachment_template() ) {
remove_filter('the_content', 'prepend_attachment');
include($template);
return;
} else if ( is_single() && $template = get_single_template() ) {
include($template);
return;
} else if ( is_page() && $template = get_page_template() ) {
include($template);
return;
} else if ( is_category() && $template = get_category_template()) {
include($template);
return;
} else if ( is_tag() && $template = get_tag_template()) {
include($template);
return;
} else if ( is_tax() && $template = get_taxonomy_template()) {
include($template);
return;
} else if ( is_author() && $template = get_author_template() ) {
开发者ID:staylor,项目名称:develop.svn.wordpress.org,代码行数:31,代码来源:template-loader.php
示例13: render
public function render($request)
{
$this->parse($request);
//add_filter('wp_title', array($this, 'get_title'));
add_action('wp_footer', array($this, 'start_editor'), 999);
load_template(get_single_template());
die;
}
开发者ID:sedici,项目名称:wpmu-istec,代码行数:8,代码来源:class_upfront_endpoint.php
示例14: block_access
/**
* HideMyWP::block_access()
*
* @return
*/
function block_access()
{
global $wp_query, $current_user;
$visitor = esc_attr(is_user_logged_in() ? $current_user->user_login : $_SERVER["REMOTE_ADDR"]);
$url = esc_url('http' . (empty($_SERVER['HTTPS']) ? '' : 's') . '://' . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI']);
// $wp_query->set('page_id', 2);
// $wp_query->query($wp_query->query_vars);
if ($this->opt('spy_notifier')) {
$body = "Hi-\nThis is %s plugin. We guess someone is researching about your WordPress site.\n\nHere is some more details:\nVisitor: %s\nURL: %s\nUser Agent: %s\n\nBest Regards,\n%s";
$body = sprintf(__($body, self::slug), self::title, $visitor, $url, $_SERVER['HTTP_USER_AGENT'], self::title);
$subject = sprintf(__('[%s] Someone is mousing!', self::slug), self::title);
wp_mail(get_option('admin_email'), $subject, $body);
}
status_header(404);
nocache_headers();
$headers = array('X-Pingback' => get_bloginfo('pingback_url'));
$headers['Content-Type'] = get_option('html_type') . '; charset=' . get_option('blog_charset');
foreach ((array) $headers as $name => $field_value) {
@header("{$name}: {$field_value}");
}
//if ( isset( $headers['Last-Modified'] ) && empty( $headers['Last-Modified'] ) && function_exists( 'header_remove' ) )
// @header_remove( 'Last-Modified' );
//wp-login.php wp-admin and direct .php access can not be implemented using 'wp' hook block_access can't work correctly with init hook so we use wp_remote_get to fix the problem
if ($this->h->str_contains($_SERVER['PHP_SELF'], '/wp-admin/') || $this->h->ends_with($_SERVER['PHP_SELF'], '.php')) {
$visitor = esc_attr(is_user_logged_in() ? $current_user->user_login : $_SERVER["REMOTE_ADDR"]);
if ($this->opt('custom_404') && $this->opt('custom_404_page')) {
wp_redirect(add_query_arg(array('by_user' => $visitor, 'ref_url' => urldecode($_SERVER["REQUEST_URI"])), get_permalink($this->opt('custom_404_page'))));
} else {
$response = @wp_remote_get(home_url('/nothing_404_404'));
if (!is_wp_error($response)) {
echo $response['body'];
} else {
wp_redirect(home_url('/404_Not_Found'));
}
}
} else {
if (get_404_template()) {
require_once get_404_template();
} else {
require_once get_single_template();
}
}
die;
}
开发者ID:visitcasabacardi,项目名称:backup-nov-08-2015,代码行数:49,代码来源:hide-my-wp.php
示例15: get_group
/**
* Returns current group
*
* @return string
*/
function get_group()
{
static $group = null;
if ($group === null) {
switch (true) {
case is_404() && ($template = get_404_template()):
case is_search() && ($template = get_search_template()):
case is_tax() && ($template = get_taxonomy_template()):
case is_home() && ($template = get_home_template()):
case is_attachment() && ($template = get_attachment_template()):
case is_single() && ($template = get_single_template()):
case is_page() && ($template = get_page_template()):
case is_category() && ($template = get_category_template()):
case is_tag() && ($template = get_tag_template()):
case is_author() && ($template = get_author_template()):
case is_date() && ($template = get_date_template()):
case is_archive() && ($template = get_archive_template()):
case is_comments_popup() && ($template = get_comments_popup_template()):
case is_paged() && ($template = get_paged_template()):
$group = basename($template, '.php');
break;
default:
$group = 'default';
break;
}
}
return $group;
}
开发者ID:kennethreitz-archive,项目名称:wordpress-skeleton,代码行数:33,代码来源:Minify.php
示例16: add_action
<?php
### Session Start
@session_start();
### Filters
add_action('wp_head', 'email_meta_nofollow');
add_filter('wp_title', 'email_pagetitle');
add_action('loop_start', 'email_addfilters');
add_filter('comments_open', '__return_false');
### We Use Page Template
if ($template = locate_template('email.php')) {
include $template;
} elseif ($template = get_page_template()) {
include $template;
} elseif ($template = get_single_template()) {
include $template;
} elseif ($template = get_index_template()) {
include $template;
}
开发者ID:Snadex,项目名称:wp-email,代码行数:19,代码来源:email-standalone.php
示例17: getDefaultTemplate
/**
* @DEPRICATED
*/
public function getDefaultTemplate($post)
{
if ($post->post_status == 'auto-draft') {
return false;
}
$args = array('p' => $post->ID, 'post_type' => $post->post_type);
if ($post->post_type == 'page') {
$args = array('page_id' => $post->ID);
}
$template = false;
if (is_404() && ($template = get_404_template())) {
} elseif (is_search() && ($template = get_search_template())) {
} elseif (is_tax() && ($template = get_taxonomy_template())) {
} elseif (is_front_page() && ($template = get_front_page_template())) {
} elseif (is_home() && ($template = get_home_template())) {
} elseif (is_attachment() && ($template = get_attachment_template())) {
} elseif (is_single() && ($template = get_single_template())) {
} elseif (is_page() && ($template = get_page_template())) {
} elseif (is_category() && ($template = get_category_template())) {
} elseif (is_tag() && ($template = get_tag_template())) {
} elseif (is_author() && ($template = get_author_template())) {
} elseif (is_date() && ($template = get_date_template())) {
} elseif (is_archive() && ($template = get_archive_template())) {
} elseif (is_comments_popup() && ($template = get_comments_popup_template())) {
} elseif (is_paged() && ($template = get_paged_template())) {
} else {
$template = get_index_template();
}
// wp_reset_query();
if ($template && is_file($template)) {
$template = basename($template);
} else {
$template = false;
}
return $template;
}
开发者ID:nikolaskarica,项目名称:bds-alliance,代码行数:39,代码来源:gumm_template_builder.php
示例18: wats_ticket_template_loader
function wats_ticket_template_loader($template)
{
global $wp_query, $wats_settings;
if (is_singular() && wats_is_ticket($wp_query->post) == true) {
if (wats_check_visibility_rights()) {
if ($wats_settings['template_selector'] == 0) {
if (get_single_template()) {
$template = str_replace('single-ticket', 'single', get_single_template());
}
add_filter('the_content', 'wats_single_ticket_content_filter', 10, 1);
} else {
if (file_exists(get_stylesheet_directory() . '/single-ticket.php')) {
$template = get_stylesheet_directory() . '/single-ticket.php';
} else {
$template = WATS_THEME_PATH . '/single-ticket.php';
}
}
} else {
if (file_exists(get_stylesheet_directory() . '/ticket-access-denied.php')) {
$template = get_stylesheet_directory() . '/ticket-access-denied.php';
} else {
$template = WATS_THEME_PATH . '/ticket-access-denied.php';
}
}
}
return $template;
}
开发者ID:adisonc,项目名称:MaineLearning,代码行数:27,代码来源:wats-template.php
示例19: array_diff
}
$diffSinglePostType = array_diff($customPostTypesWithPosts, $singlePostTypesFromFiles);
if (!empty($diffSinglePostType)) {
$post = get_posts(array('numberposts' => 1, 'post_type' => $diffSinglePostType[key($diffSinglePostType)]));
$post = $post[0];
$singleChilds['single-posttype'] = true;
}
}
}
}
/*
* Single
*/
foreach ($singleChilds as $key => $value) {
if ($value) {
$singleTemplate = get_single_template();
if (!empty($singleTemplate)) {
$singlePath = explode('/', $singleTemplate);
$singleFile = end($singlePath);
switch ($key) {
case 'single-post':
$id = $lastPost->ID;
break;
case 'single-posttype':
$id = $post->ID;
break;
}
showOption(get_permalink($id), $singleFile, null, false, false, 'Single');
}
break;
}
开发者ID:nelclassico,项目名称:hapvidaplanos,代码行数:31,代码来源:showPageList.php
示例20: block_access
function block_access()
{
status_header(404);
nocache_headers();
$headers = array('X-Pingback' => get_bloginfo('pingback_url'));
$headers['Content-Type'] = get_option('html_type') . '; charset=' . get_option('blog_charset');
foreach ((array) $headers as $name => $field_value) {
@header("{$name}: {$field_value}");
}
//if ( isset( $headers['Last-Modified'] ) && empty( $headers['Last-Modified'] ) && function_exists( 'header_remove' ) )
// @header_remove( 'Last-Modified' );
//wp-login.php wp-admin and direct .php access can not be implemented using 'wp' hook block_access can't work correctly with init hook so we use wp_remote_get to fix the problem
if (is_admin()) {
if ($this->opt('custom_404') && $this->opt('custom_404_page')) {
wp_redirect(get_permalink($this->opt('custom_404_page')));
} else {
$response = @wp_remote_get(home_url('/nothing_404_404'));
if (!is_wp_error($response)) {
echo $response['body'];
} else {
wp_redirect(home_url('/404_Not_Found'));
}
}
} else {
if (get_404_template()) {
require_once get_404_template();
} else {
require_once get_single_template();
}
}
die;
}
开发者ID:visitcasabacardi,项目名称:backup-nov-08-2015,代码行数:32,代码来源:mute-screamer.php
注:本文中的get_single_template函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论