本文整理汇总了PHP中wpex_hook_content_top函数的典型用法代码示例。如果您正苦于以下问题:PHP wpex_hook_content_top函数的具体用法?PHP wpex_hook_content_top怎么用?PHP wpex_hook_content_top使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了wpex_hook_content_top函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: wpex_hook_primary_before
<div id="content-wrap" class="container clr">
<?php
wpex_hook_primary_before();
?>
<div id="primary" class="content-area clr">
<?php
wpex_hook_content_before();
?>
<div id="content" class="clr site-content" role="main">
<?php
wpex_hook_content_top();
?>
<?php
while (have_posts()) {
the_post();
?>
<article class="entry-content entry clr">
<?php
the_content();
?>
</article><!-- #post -->
示例2: before_main_content
/**
* Before main content wrapper
*
* @since 3.0.8
*/
public function before_main_content()
{
ob_start();
?>
<div id="content-wrap" class="container clr">
<?php
wpex_hook_primary_before();
?>
<div id="primary" class="content-area clr">
<?php
wpex_hook_content_before();
?>
<div id="content" class="site-content clr">
<?php
wpex_hook_content_top();
?>
<?php
echo ob_get_clean();
}