>백엔드 개발 >PHP 튜토리얼 > wordpress侧边栏如何调用的文章列表,看了很久一直不能理解

wordpress侧边栏如何调用的文章列表,看了很久一直不能理解

WBOY
WBOY원래의
2016-06-13 12:32:55859검색

wordpress侧边栏怎么调用的文章列表,看了很久一直不能理解
WordPress 3.7.1简体中文版,wordpress侧边栏怎么调用的文章列表

我下的一个主题中的sidebar.php

<br />
<div id="primary" class="sidebar grid_5 pull_10"><br />
	<ul class=""><br />
	<?php if ( is_active_sidebar( 'sidebartop' ) ) : ?><br />
        <?php dynamic_sidebar( 'sidebartop' ); ?><br />
	<?php endif; // end primary sidebar widgets  ?><br />
	</ul><br />
	<br />
</div><!-- #primary .sidebar --><br />
<br />
<div id="secondary" class="sidebar grid_5 pull_10"><br />
	<ul class=""><br />
	<?php if ( is_active_sidebar( 'sidebarbottom' ) ) : ?><br />
        <?php dynamic_sidebar( 'sidebarbottom' ); ?><br />
	<?php endif; // end secondary sidebar widgets  ?><br />
	</ul><br />
    <br />
</div><!-- #secondary .sidebar --><br />


dynamic_sidebar( 'sidebartop' ) 这个函数调用的最新文章列表?

sidebartop注册是在functions.php中,然后后台才有显示,如下:

register_sidebar(array(<br />
		'name' => 'SidebarTop',<br />
		'description' => 'Top sidebar',<br />
		'id'            => 'sidebartop',<br />
		'before_widget'  =>   "\n\t\t\t" . '<li id="%1$s" class="widget %2$s"><div class="widgetblock">',<br />
		'after_widget'   =>   "\n\t\t\t</div></li>\n",<br />
		'before_title'   =>   "\n\t\t\t\t". '<div class="widgettitleb"><h3 class="widgettitle">',<br />
		'after_title'    =>   "</h3></div>\n" .''<br />
		));<br />


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.