PHP WordPress中的自定义小部件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP WordPress中的自定义小部件相关的知识,希望对你有一定的参考价值。

<?php

/* the following goes into the functions.php file */
if (function_exists('register_sidebar')) {

	register_sidebar(array(
		'name' => 'My Custom Widget',
		'id'   => 'my_custom_widget',
		'description'   => 'Widget area for home page center left column',
		'before_widget' => '<div id="widget-id" class="widget %2$s">',
		'after_widget'  => '</div>',
		'before_title'  => '<h2>',
		'after_title'   => '</h2>'
	));

}

?>

<?php

/* this goes into your template file where you want the widget to appear */

?>

<?php if (function_exists('dynamic_sidebar') && dynamic_sidebar('my_custom_widget')) : else : ?>
	<div class="widget">
		<h2>Widget Ready</h2>
		<p>This my_custom_widget is widget ready! Add one in the admin panel.</p>
	</div>
<?php endif; ?>

以上是关于PHP WordPress中的自定义小部件的主要内容,如果未能解决你的问题,请参考以下文章

带有媒体上传按钮的自定义Wordpress窗口小部件,在每个窗口小部件上插入相同的图像

如何在 WordPress 中创建自定义可拖动小部件

PHP Wordpress:自定义小部件区域

我正在尝试将某种小部件或菜单添加到我所有 Wordpress 网站页面的顶部

PHP 论文WP中选定页面上的自定义小部件

php DashboardWidgeteinfügen - 将自定义仪表板小部件添加到wordpress