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


PHP Tribe__Events__Template_Factory::hooks方法代码示例

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


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

示例1: hooks

 protected function hooks()
 {
     parent::hooks();
     if (tribe_is_showing_all()) {
         add_filter('tribe_get_template_part_path_modules/bar.php', '__return_false');
     }
 }
开发者ID:uwmadisoncals,项目名称:Cluster-Plugins,代码行数:7,代码来源:List.php

示例2: hooks

 public function hooks()
 {
     parent::hooks();
     add_action('embed_head', array($this, 'embed_head'));
 }
开发者ID:nullify005,项目名称:shcc-website,代码行数:5,代码来源:Embed.php

示例3: hooks

 /**
  * Add any special hooks for this view
  *
  */
 protected function hooks()
 {
     parent::hooks();
     // Since we set is_post_type_archive to true on month view, this prevents 'Events' from being added to the page title
     add_filter('post_type_archive_title', '__return_false', 10);
     if (!empty($this->events_in_month)) {
         add_filter('tribe_events_month_has_events', array($this, 'has_events'));
     }
 }
开发者ID:acutedeveloper,项目名称:havering-intranet-development,代码行数:13,代码来源:Month.php

示例4: hooks

 /**
  * Add any special hooks for this view
  *
  * @return void
  **/
 protected function hooks()
 {
     parent::hooks();
     // Since we set is_post_type_archive to true on month view, this prevents 'Events' from being added to the page title
     add_filter('post_type_archive_title', '__return_false', 10);
 }
开发者ID:uoyknaht,项目名称:kc,代码行数:11,代码来源:Month.php

示例5: hooks

 /**
  * Set up hooks for this template
  *
  * @return void
  **/
 public function hooks()
 {
     parent::hooks();
     add_filter('tribe_get_ical_link', array($this, 'ical_link'), 20, 1);
     add_filter('tribe_events_header_attributes', array($this, 'header_attributes'));
 }
开发者ID:Alexander-smirnov,项目名称:infomist,代码行数:11,代码来源:Day.php

示例6: hooks

 public function hooks()
 {
     parent::hooks();
     // Print JSON-LD markup on the `wp_head`
     add_action('wp_head', array(Tribe__Events__JSON_LD__Event::instance(), 'markup'));
 }
开发者ID:nullify005,项目名称:shcc-website,代码行数:6,代码来源:Single_Event.php

示例7: hooks

 /**
  * Set up hooks for this template
  *
  * @return void
  * @since 1.0
  **/
 public function hooks()
 {
     parent::hooks();
     add_filter('tribe_get_events_title', array($this, 'the_title'));
 }
开发者ID:rlaloux,项目名称:tribe-events-agenda-view,代码行数:11,代码来源:tribe-events-agenda-template-class.php


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