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


PHP woo_main_after函數代碼示例

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


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

示例1: whitelight_after_content

    function whitelight_after_content()
    {
        ?>
			<?php 
        if (is_search() && is_post_type_archive()) {
            add_filter('woo_pagination_args', 'woocommerceframework_add_search_fragment', 10);
        }
        ?>
			<?php 
        woo_pagenav();
        ?>
			</div><!-- /#main -->
	        <?php 
        woo_main_after();
        ?>
			<?php 
        get_sidebar();
        ?>
			</div>
	    </div><!-- /#content -->
		<?php 
        woo_content_after();
        ?>
	    <?php 
    }
開發者ID:jaiweb,項目名稱:ASP,代碼行數:25,代碼來源:woocommerce-layout.php

示例2: woocommerce_mystile_after_content

        function woocommerce_mystile_after_content()
        {
            ?>

			</div><!-- /#main -->
	        <?php 
            woo_main_after();
            ?>

	    </div><!-- /#content -->
		<?php 
            woo_content_after();
            ?>
	    <?php 
        }
開發者ID:iplaydu,項目名稱:Bob-Ellis-Shoes,代碼行數:15,代碼來源:theme-woocommerce.php

示例3: woo_projects_after_content

    function woo_projects_after_content()
    {
        ?>

			</div><!-- /#main -->
	        <?php 
        woo_main_after();
        ?>

	    </div><!-- /#content -->
		<?php 
        woo_content_after();
        ?>
	    <?php 
    }
開發者ID:danmaby,項目名稱:VAT,代碼行數:15,代碼來源:template.php

示例4: artificer_after_content

    function artificer_after_content()
    {
        ?>
			</div><!-- /#main -->
	        <?php 
        woo_main_after();
        ?>
			<?php 
        woocommerce_get_sidebar();
        ?>
	    </div><!-- /#content -->
		<?php 
        woo_content_after();
        ?>
	    <?php 
    }
開發者ID:rao1219,項目名稱:myweb-php,代碼行數:16,代碼來源:theme-woocommerce.php

示例5: woo_projects_after_content

    function woo_projects_after_content()
    {
        ?>

				</div><!-- /#main -->
		        <?php 
        woo_main_after();
        ?>

		        <?php 
        do_action('projects_sidebar');
        ?>

	        </div><!-- /.wrapper -->

	    </div><!-- /#content -->
	    <?php 
    }
開發者ID:maesson,項目名稱:lyft,代碼行數:18,代碼來源:template.php

示例6: woocommerce_canvas_after_content

    function woocommerce_canvas_after_content()
    {
        ?>
				</section><!-- /#main -->
	            <?php 
        woo_main_after();
        ?>

			</div><!-- /#main-sidebar-container -->

			<?php 
        get_sidebar('alt');
        ?>

	    </div><!-- /#content -->
		<?php 
        woo_content_after();
        ?>
	    <?php 
    }
開發者ID:plusplusminus,項目名稱:athol,代碼行數:20,代碼來源:template.php

示例7: _e

} else {
    ?>
            <div class="post">
                <p><?php 
    _e('Sorry, no posts matched your criteria.', 'woothemes');
    ?>
</p>
            </div><!-- /.post -->
        <?php 
}
?>
  
    
            <?php 
woo_pagenav();
?>
                
        </div><!-- /#main -->
        <?php 
woo_main_after();
?>

        <?php 
get_sidebar();
?>

	</div><!-- /#col-full -->
    </div><!-- /#content -->
		
<?php 
get_footer();
開發者ID:aozora,項目名稱:arashi,代碼行數:31,代碼來源:template-blog.php

示例8: woocommerce_theme_after_content

    function woocommerce_theme_after_content()
    {
        ?>

			</div><!-- /#main -->
	        <?php 
        woo_main_after();
        ?>
	        <?php 
        do_action('woocommerce_sidebar');
        ?>

	    </div><!-- /#content -->
		<?php 
        woo_content_after();
        ?>
	    <?php 
    }
開發者ID:brooksco,項目名稱:jstich,代碼行數:18,代碼來源:theme-woocommerce.php

示例9: canvas_child_add_after_content

    function canvas_child_add_after_content()
    {
        ?>
		
                    </section><!-- /#main -->
                                
                </div><!-- /#main-sidebar-container -->
                
                <?php 
        woo_main_after();
        ?>
                
                <?php 
        get_sidebar('alt');
        ?>

	    </div><!-- /#content -->
            
            <?php 
        woo_content_after();
    }
開發者ID:abcode619,項目名稱:wpstuff,代碼行數:21,代碼來源:functions_add_custom_field_category.php


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