本文整理汇总了PHP中gk_load函数的典型用法代码示例。如果您正苦于以下问题:PHP gk_load函数的具体用法?PHP gk_load怎么用?PHP gk_load使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了gk_load函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: while
while (have_posts()) {
the_post();
?>
<header>
<h1 class="page-title"><?php
the_title();
?>
</h1>
</header>
<section class="content">
<?php
the_content();
?>
<div class="tag-cloud">
<?php
wp_tag_cloud('number=0');
?>
</div>
</section>
<?php
}
?>
</section>
<?php
gk_load('after');
gk_load('footer');
// EOF
示例2: wp_enqueue_script
<?php
if (is_singular() && get_option('thread_comments')) {
wp_enqueue_script('comment-reply');
}
?>
<?php
do_action('gavernwp_ie_scripts');
?>
<?php
gk_head_shortcodes();
?>
<?php
gk_load('responsive_css');
if (get_option($gk_tpl->name . "_overridecss_state", 'Y') == 'Y') {
wp_enqueue_style('gavern-override', gavern_file_uri('css/override.css'), array('gavern-style'));
}
?>
<?php
if (get_option($gk_tpl->name . '_prefixfree_state', 'N') == 'Y') {
wp_enqueue_script('gavern-prefixfree', gavern_file_uri('js/prefixfree.js'));
}
?>
<?php
gk_head_style_css();
?>
<?php
示例3: get_option
if (gk_is_active_sidebar('social')) {
?>
<div id="gk-social-icons" class="<?php
echo get_option($tpl->name . '_social_icons_position', 'right');
?>
">
<?php
gk_dynamic_sidebar('social');
?>
</div>
<?php
}
?>
<?php
gk_load('social');
?>
<?php
do_action('gavernwp_footer');
?>
<?php
echo stripslashes(htmlspecialchars_decode(str_replace(''', "'", get_option($tpl->name . '_footer_code', ''))));
?>
<?php
wp_footer();
?>
<?php
示例4: gk_load
<?php
// This file was added especially for the wp-signup.php and wp-activate.php files :-)
gk_load('header');
gk_load('before');
// EOF