• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP print_head_scripts函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中print_head_scripts函数的典型用法代码示例。如果您正苦于以下问题:PHP print_head_scripts函数的具体用法?PHP print_head_scripts怎么用?PHP print_head_scripts使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



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

示例1: wp_print_head_scripts

function wp_print_head_scripts()
{
    if (!did_action('wp_print_scripts')) {
        /** This action is documented in wp-includes/functions.wp-scripts.php */
        do_action('wp_print_scripts');
    }
    global $wp_scripts;
    if (!$wp_scripts instanceof WP_Scripts) {
        return array();
        // no need to run if nothing is queued
    }
    return print_head_scripts();
}
开发者ID:AppItNetwork,项目名称:yii2-wordpress-themes,代码行数:13,代码来源:script-loader.php


示例2: loadShortcodes

	function loadShortcodes() {
		! defined( 'CONCATENATE_SCRIPTS' ) && define( 'CONCATENATE_SCRIPTS', false );
		$this->setPost();
		$shortcodes = (array)vc_post_param( 'shortcodes' );
		$this->renderShortcodes( $shortcodes );
		echo '<div data-type="files">';
		_print_styles();
		print_head_scripts();
		print_late_styles();
		print_footer_scripts();
		echo '</div>';
		die();
	}
开发者ID:verbazend,项目名称:AWFA,代码行数:13,代码来源:class-vc-frontend-editor.php


示例3: wp_print_head_scripts

/**
 * Prints the script queue in the HTML head on the front end.
 *
 * Postpones the scripts that were queued for the footer.
 * wp_print_footer_scripts() is called in the footer to print these scripts.
 *
 * @since 2.8
 */
function wp_print_head_scripts()
{
    if (!did_action('wp_print_scripts')) {
        do_action('wp_print_scripts');
    }
    global $wp_scripts;
    if (!is_a($wp_scripts, 'WP_Scripts')) {
        return array();
    }
    // no need to run if nothing is queued
    return print_head_scripts();
}
开发者ID:jawandsingh,项目名称:wordpress_with_sql_azure,代码行数:20,代码来源:script-loader.php


示例4: _print_styles

<div id="vc_template-html">
    <?php 
echo $editor->parseShortcodesString($editor->getTemplateContent());
?>
    <div data-type="files">
        <?php 
_print_styles();
print_head_scripts();
print_late_styles();
print_footer_scripts();
?>
    </div>
</div>
<div id="vc_template-data"><?php 
echo esc_html_e(json_encode($editor->post_shortcodes));
?>
</div>

开发者ID:ksan5835,项目名称:rankproperties,代码行数:17,代码来源:frontend_template.tpl.php


示例5: loadShortcodes

 /**
  *
  */
 function loadShortcodes()
 {
     if (is_user_logged_in()) {
         $action = vc_post_param('action');
         if ($action == 'vc_load_shortcode') {
             !defined('CONCATENATE_SCRIPTS') && define('CONCATENATE_SCRIPTS', false);
             ob_start();
             $this->setPost();
             $shortcodes = (array) vc_post_param('shortcodes');
             do_action('vc_load_shortcode', $shortcodes);
             $this->renderShortcodes($shortcodes);
             echo '<div data-type="files">';
             _print_styles();
             print_head_scripts();
             print_late_styles();
             print_footer_scripts();
             do_action('wp_print_footer_scripts');
             echo '</div>';
             $output = ob_get_clean();
             die(apply_filters('vc_frontend_editor_load_shortcode_ajax_output', $output));
         } else {
             if ($action == 'vc_frontend_default_template') {
                 // @deprecated since 4.4 and will be removed and should not be used, use action 'vc_frontend_default_template_modal' instead and templatesPanelEditor
                 $this->setPost();
                 visual_composer()->templatesEditor()->renderFrontendDefaultTemplate();
             } else {
                 if ($action == 'vc_frontend_template') {
                     // @deprecated since 4.4 and will be removed and should not be used, use action 'vc_frontend_template_modal' instead and templatesPanelEditor
                     $this->setPost();
                     visual_composer()->templatesEditor()->renderFrontendTemplate();
                 } else {
                     if ($action == 'vc_frontend_load_template') {
                         $this->setPost();
                         visual_composer()->templatesPanelEditor()->renderFrontendTemplate();
                     }
                 }
             }
         }
     }
     if (vc_post_param('action') != '') {
         do_action('vc_front_load_page_' . esc_attr(vc_post_param('action')));
     }
 }
开发者ID:Angelpm28,项目名称:ong-canada,代码行数:46,代码来源:class-vc-frontend-editor.php


示例6: pte_init_iframe

/**
 * Sending output to an iframe
 */
function pte_init_iframe()
{
    global $title, $pte_iframe;
    $pte_iframe = true;
    // Provide the base framework/HTML for the editor.
    require_once ABSPATH . WPINC . '/script-loader.php';
    // Check the input parameters and create the HTML
    pte_edit_setup();
    print "<!DOCTYPE html>\n<html><head><title>{$title}</title>\n";
    print_head_scripts();
    print_admin_styles();
    print '</head><body class="wp-core-ui pte-iframe">';
    // Simply echo the created HTML
    pte_edit_page();
    wp_print_footer_scripts();
    print '</body></html>';
}
开发者ID:ilke-zilci,项目名称:newcomers-wp,代码行数:20,代码来源:functions.php


示例7: loadShortcodes

 /**
  *
  */
 function loadShortcodes()
 {
     if (vc_is_page_editable() && vc_enabled_frontend()) {
         $action = vc_post_param('action');
         if ('vc_load_shortcode' === $action) {
             !defined('CONCATENATE_SCRIPTS') && define('CONCATENATE_SCRIPTS', false);
             ob_start();
             $this->setPost();
             $shortcodes = (array) vc_post_param('shortcodes');
             do_action('vc_load_shortcode', $shortcodes);
             $this->renderShortcodes($shortcodes);
             echo '<div data-type="files">';
             _print_styles();
             print_head_scripts();
             print_late_styles();
             print_footer_scripts();
             do_action('wp_print_footer_scripts');
             echo '</div>';
             $output = ob_get_clean();
             die(apply_filters('vc_frontend_editor_load_shortcode_ajax_output', $output));
         } elseif ('vc_frontend_load_template' === $action) {
             $this->setPost();
             visual_composer()->templatesPanelEditor()->renderFrontendTemplate();
         } else {
             if ('' !== $action) {
                 do_action('vc_front_load_page_' . esc_attr(vc_post_param('action')));
             }
         }
     }
 }
开发者ID:k2jysy,项目名称:wedev,代码行数:33,代码来源:class-vc-frontend-editor.php


示例8: puzzler_header_scripts

/**
 * -- override WP_Scripts/WP_Styles by Puzzler classes through @puzzler_class_changer()
 */
function puzzler_header_scripts()
{
    if (!did_action('wp_print_scripts')) {
        do_action('wp_print_scripts');
    }
    puzzler_class_changer();
    global $wp_scripts;
    if (!$wp_scripts instanceof WP_Scripts) {
        return array();
        // no need to run if nothing is queued
    }
    return print_head_scripts();
}
开发者ID:antoshkin,项目名称:puzzler,代码行数:16,代码来源:puzzler.php


示例9: loadShortcodes

 function loadShortcodes()
 {
     $shortcodes = (array) $this->post('shortcodes');
     $this->renderShortcodes($shortcodes);
     echo '<div data-type="files">';
     _print_styles();
     print_head_scripts();
     print_late_styles();
     print_footer_scripts();
     echo '</div>';
     die;
 }
开发者ID:roycocup,项目名称:enclothed,代码行数:12,代码来源:editor.php


示例10: asc_print_head_scripts

/**
 * Prints the script queue in the HTML head on the front end.
 *
 * Postpones the scripts that were queued for the footer.
 * asc_print_footer_scripts() is called in the footer to print these scripts.
 *
 * @since 2.8.0
 */
function asc_print_head_scripts()
{
    if (!did_action('asc_print_scripts')) {
        /** This action is documented in functions.asc-scripts.php */
        do_action('asc_print_scripts');
    }
    global $asc_scripts;
    if (!is_a($asc_scripts, 'ASC_Scripts')) {
        return array();
    }
    // no need to run if nothing is queued
    return print_head_scripts();
}
开发者ID:KICHIRO20,项目名称:-Myproject_part1-,代码行数:21,代码来源:script-loader.php


示例11: _displayHead

 function _displayHead(&$output)
 {
     // get line endings
     $lnEnd = "\n";
     $tab = "\t";
     $tagEnd = ' />';
     $strHtml = '';
     // Enqueue Styles
     $deps = array();
     foreach ($this->_styles as $style_priority) {
         foreach ($style_priority as $strSrc) {
             if ($strSrc->type == 'local') {
                 $path = parse_url($strSrc->url, PHP_URL_PATH);
                 if ($this->baseUrl != "/") {
                     $path = '/' . preg_replace('#^' . quotemeta($this->baseUrl) . '#', "", $path);
                 }
                 $filename = strtolower(basename($path, '.css')) . rand(0, 1000);
                 wp_enqueue_style($filename, $path, array(), '1.26');
                 $deps[] = $path;
             }
         }
     }
     // Add scripts to the header
     $deps = array();
     foreach ($this->_scripts as $strSrc) {
         $path = parse_url($strSrc, PHP_URL_PATH);
         if ($this->baseUrl != "/") {
             $path = '/' . preg_replace('#^' . quotemeta($this->baseUrl) . '#', "", $path);
         }
         wp_enqueue_script($path, $path, $deps, '1.26');
         $deps[] = $path;
     }
     foreach ($this->_full_scripts as $strSrc) {
         wp_enqueue_script($strSrc, $strSrc, $deps, '1.26');
         $deps[] = $strSrc;
     }
     if (!$this->isAdmin()) {
         $strHtml .= $this->_renderCharset();
         $strHtml .= $this->_renderTitle();
         add_action('wp_head', array($this, '_renderRemoteStyles'), 8);
         add_action('wp_head', array($this, '_renderRemoteScripts'), 9);
         ob_start();
         wp_head();
         $strHtml .= ob_get_clean();
         $strHtml .= $this->_renderStylesHead();
         $strHtml .= $this->_renderScriptsHead();
     } else {
         ob_start();
         $this->_renderRemoteStyles();
         print_admin_styles();
         $this->_renderRemoteScripts();
         print_head_scripts();
         $strHtml .= ob_get_clean();
         $strHtml .= $this->_renderStylesHead();
         $strHtml .= $this->_renderScriptsHead();
     }
     $output = preg_replace("#<gantry:header/>#", $strHtml, $output);
 }
开发者ID:rotoballer,项目名称:emily,代码行数:58,代码来源:gantry.class.php



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP print_header函数代码示例发布时间:2022-05-15
下一篇:
PHP print_head函数代码示例发布时间:2022-05-15
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap