当前位置: 首页>>代码示例>>PHP>>正文


PHP EEH_Template::is_espresso_theme方法代码示例

本文整理汇总了PHP中EEH_Template::is_espresso_theme方法的典型用法代码示例。如果您正苦于以下问题:PHP EEH_Template::is_espresso_theme方法的具体用法?PHP EEH_Template::is_espresso_theme怎么用?PHP EEH_Template::is_espresso_theme使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在EEH_Template的用法示例。


在下文中一共展示了EEH_Template::is_espresso_theme方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: template_include

 /**
  *    template_include
  *
  * @access    public
  * @param string $template
  * @return    string
  */
 public function template_include($template = '')
 {
     // don't add content filter for dedicated EE child themes or private posts
     EE_Registry::instance()->load_helper('Template');
     if (!EEH_Template::is_espresso_theme()) {
         /** @type EE_Events_Archive_Config $config */
         $config = $this->config();
         // add status banner ?
         if ($config->display_status_banner) {
             add_filter('the_title', array('EED_Events_Archive', 'the_title'), 100, 2);
         }
         // if NOT a custom template
         if (EE_Front_Controller::instance()->get_selected_template() != 'archive-espresso_events.php' || apply_filters('FHEE__EED_Event_Archive__template_include__allow_custom_selected_template', FALSE)) {
             // don't display entry meta because the existing theme will take care of that
             add_filter('FHEE__EED_Events_Archive__template_include__events_list_active', '__return_true');
             // load functions.php file for the theme (loaded by WP if using child theme)
             EEH_Template::load_espresso_theme_functions();
             // because we don't know if the theme is using the_excerpt()
             add_filter('the_excerpt', array('EED_Events_Archive', 'event_details'), 100, 1);
             // or the_content
             add_filter('the_content', array('EED_Events_Archive', 'event_details'), 100, 1);
             // and just in case they are running get_the_excerpt() which DESTROYS things
             add_filter('get_the_excerpt', array('EED_Events_Archive', 'get_the_excerpt'), 1, 1);
             // don't display entry meta because the existing theme will take care of that
             add_filter('FHEE__content_espresso_events_details_template__display_entry_meta', '__return_false');
         }
     }
     return $template;
 }
开发者ID:adrianjonmiller,项目名称:hearts-being-healed,代码行数:36,代码来源:EED_Events_Archive.module.php

示例2: template_include

 /**
  *    template_include
  *
  * @access    public
  * @param string $template
  * @return    string
  */
 public function template_include($template = '')
 {
     // ensure valid EE_Events_Archive_Config() object exists
     //		EED_Events_Archive::_set_config();
     // don't add content filter for dedicated EE child themes or private posts
     if (!EEH_Template::is_espresso_theme() && !post_password_required()) {
         // add status banner ?
         if ($this->config()->display_status_banner) {
             add_filter('the_title', array('EED_Events_Archive', 'the_title'), 100, 2);
         }
         // if NOT a custom template
         if (EE_Front_Controller::instance()->get_selected_template() != 'archive-espresso_events.php') {
             // load functions.php file for the theme (loaded by WP if using child theme)
             EEH_Template::load_espresso_theme_functions();
             // because we don't know if the theme is using the_excerpt()
             add_filter('the_excerpt', array('EED_Events_Archive', 'event_details'), 100, 1);
             // or the_content
             add_filter('the_content', array('EED_Events_Archive', 'event_details'), 100, 1);
             // and just in case they are running get_the_excerpt() which DESTROYS things
             add_filter('get_the_excerpt', array('EED_Events_Archive', 'get_the_excerpt'), 1, 1);
             // don't display entry meta because the existing theme will take care of that
             add_filter('FHEE__content_espresso_events_details_template__display_entry_meta', '__return_false');
         }
     }
     return $template;
 }
开发者ID:antares-ff,项目名称:ANTARES-Test,代码行数:33,代码来源:EED_Events_Archive.module.php


注:本文中的EEH_Template::is_espresso_theme方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。