Heim >Backend-Entwicklung >PHP-Tutorial > wordpress侧边栏如何调用的文章列表,看了很久一直不能理解

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

WBOY
WBOYOriginal
2016-06-13 12:32:55859Durchsuche

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 />


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn