當前位置: 首頁>>代碼示例>>PHP>>正文


PHP odin_classes_page_sidebar函數代碼示例

本文整理匯總了PHP中odin_classes_page_sidebar函數的典型用法代碼示例。如果您正苦於以下問題:PHP odin_classes_page_sidebar函數的具體用法?PHP odin_classes_page_sidebar怎麽用?PHP odin_classes_page_sidebar使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了odin_classes_page_sidebar函數的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: odin_before_content

    /**
     * Before Content
     * Wraps all WooCommerce content in wrappers which match the theme markup
     * @since   2.2.6
     * @return  void
     */
    function odin_before_content()
    {
        ?>
		<main id="content" class="<?php 
        echo odin_classes_page_sidebar();
        ?>
" tabindex="-1" role="main">
		<?php 
    }
開發者ID:KhallebRibeiro,項目名稱:odin,代碼行數:15,代碼來源:functions.php

示例2: odin_before_content

    /**
     * Before Content
     * Wraps all WooCommerce content in wrappers which match the theme markup
     * @since   2.2.6
     * @return  void
     */
    function odin_before_content()
    {
        ?>
		<div id="primary" class="<?php 
        echo odin_classes_page_sidebar();
        ?>
">
			<main id="main-content" class="site-main" role="main">
		<?php 
    }
開發者ID:poliondas,項目名稱:wordpress-br,代碼行數:16,代碼來源:functions.php

示例3: odin_before_content

    /**
     * Before Content
     * Wraps all WooCommerce content in wrappers which match the theme markup
     * @since   2.2.6
     * @return  void
     */
    function odin_before_content()
    {
        global $post;
        $product = wc_get_product($post->ID);
        if (is_singular() && is_object($product) && $product->is_type('yith_bundle')) {
            ?>
			<main id="content" class="col-md-10" tabindex="-1" role="main">
		<?php 
        } elseif (is_singular()) {
            ?>
			<main id="content" class="<?php 
            echo odin_classes_page_sidebar();
            ?>
" tabindex="-1" role="main">
		<?php 
        } else {
            ?>
			<main id="content" class="col-md-12" tabindex="-1" role="main">
		<?php 
        }
    }
開發者ID:brasadesign,項目名稱:aboaterra-theme,代碼行數:27,代碼來源:functions.php

示例4: odin_classes_page_sidebar

        
        top: auto !important;
    }
}
img[Attributes Style] {
  width: 100%;
  height: 441px;
}
.responsive-image{width: 105% !important; height:auto;}
h1{font-size:x-large !important;}
</style>


<!-- main content -->
<div id="primary" class="<?php 
echo odin_classes_page_sidebar();
?>
">
 <div class="col offset-l1 l10 s12 white z-depth-1">
    <div class="row">
        <div class="col l9 ">
           

          	<?php 
// Start the Loop.
while (have_posts()) {
    the_post();
    ?>
                	<?php 
    if (is_single()) {
        the_title('<h1 class="entry-title">', '</h1>');
開發者ID:pixies,項目名稱:tagilab-fis-977138b13455,代碼行數:30,代碼來源:single.php

示例5: odin_woocommerce_jigoshop_content_wrapper

/**
 * WooCommerce and Jigoshop content wrapper.
 *
 * @since  2.2.0
 *
 * @return void
 */
function odin_woocommerce_jigoshop_content_wrapper()
{
    echo '<div id="primary" class="' . odin_classes_page_sidebar() . '">';
}
開發者ID:brasadesign,項目名稱:rede-polos-theme,代碼行數:11,代碼來源:plugins-support.php


注:本文中的odin_classes_page_sidebar函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。