现在,我正在使用WordPress开发一个新的WebSite。 我不知道如何使用小部件。 我试图在Google上搜索,所以找到了答案。 这是我的代码。
class WP_Widget_Home extends WP_Widget {
/**
* Sets up the widgets name etc
*/
public function __construct()
{
parent::__construct('id_widget_home',
__('(TrueLove) [PAGE] Home', 'TrueLove'),
array('description' => __('Intro page.', 'TrueLove')));
}
/**
* Outputs the content of the widget
*
* @param array $args
* @param array $instance
*/
public function widget( $args, $instance ) {
// outputs the content of the widget
echo "<h1>I like U!</h1>";
the_content();
}
...
function registerHomeWidgetFunc()
{
return register_widget("WP_Widget_Home");
}
add_action('widgets_init', 'registerHomeWidgetFunc');
我可以在WidgetPage('wp-admin / widgets.php')上插入(TrueLove)[Page]主页小部件。 就这样。 我该怎么用?