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


PHP WPBakeryShortCode::__construct方法代码示例

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


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

示例1: __construct

 public function __construct($settings)
 {
     parent::__construct($settings);
     if (!self::$filter_added) {
         $this->addFilter('vc_inline_template_content', 'setCustomTabId');
         self::$filter_added = true;
     }
 }
开发者ID:evanbuss,项目名称:wordpress,代码行数:8,代码来源:vc-tabs.php

示例2:

	function __construct( $settings ) {
		parent::__construct( $settings );
	}
开发者ID:verbazend,项目名称:AWFA,代码行数:3,代码来源:vc-posts-grid.php

示例3:

 function __construct($settings)
 {
     parent::__construct($settings);
     $this->jsScripts();
 }
开发者ID:VitaAprel,项目名称:mynotebook,代码行数:5,代码来源:vc-single-image.php

示例4: __construct

 public function __construct($settings)
 {
     parent::__construct($settings);
     $this->addAction('wp_enqueue_scripts', 'jsScripts');
 }
开发者ID:jjmas,项目名称:jjmas.net,代码行数:5,代码来源:pie.php

示例5:

 function __construct($settings)
 {
     parent::__construct($settings);
     $this->shortcodeScripts();
 }
开发者ID:severnrescue,项目名称:web,代码行数:5,代码来源:vc-gallery.php

示例6:

 function __construct($settings)
 {
     parent::__construct($settings);
     $this->addAction('admin_init', 'jsComposerEditPage', 6);
 }
开发者ID:ksingh812,项目名称:thub-old,代码行数:5,代码来源:posts_grid.php

示例7: __construct

 public function __construct($settings)
 {
     parent::__construct($settings);
     $this->wt_sc = new WT_VCSC_SHORTCODE();
 }
开发者ID:panchortuzar,项目名称:revistaemprendedores-shop,代码行数:5,代码来源:wt_vcsc_custom_heading.php

示例8: __construct

 public function __construct($settings)
 {
     parent::__construct($settings);
     // WPBakeryVisualComposer::getInstance()->addShortCode( array( 'base' => 'vc_tab' ) );
 }
开发者ID:unisexx,项目名称:drtooth,代码行数:5,代码来源:nested_tabs.php

示例9: __construct

 public function __construct($settings)
 {
     parent::__construct($settings);
     wp_enqueue_style('tm-polygon-swipebox');
     wp_enqueue_script('tm-polygon-swipebox');
 }
开发者ID:novichkovv,项目名称:prlab,代码行数:6,代码来源:vc-extend.php

示例10: __construct

 public function __construct($settings)
 {
     parent::__construct($settings);
     // !Important to call parent constructor to active all logic for shortcode.
     $this->jsCssScripts();
 }
开发者ID:rtenshi,项目名称:vc-dev-example,代码行数:6,代码来源:test_vc_map.php


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