我已经注册了一个名为Album的自定义分类法,现在我想注册并显示一个自定义小部件类的类别,以便在侧边栏上显示最近的“x”相册以及缩略图。下面是一段代码,但它像标记云一样显示它。
<?php
add_action("widgets_init", array(\'Widget_Custom_tax_tag_cloud\', \'register\'));
class Widget_Custom_tax_tag_cloud {
function control(){
echo \'No control panel\';
}
function widget($args){
echo $args[\'before_widget\'];
echo $args[\'before_title\'] . \'Your widget title\' . $args[\'after_title\'];
$cloud_args = array(\'taxonomy\' => \'Your taxonomy here\');
wp_tag_cloud( $cloud_args );
echo $args[\'after_widget\'];
}
function register(){
register_sidebar_widget(\'Widget name\', array(\'Widget_Custom_tax_tag_cloud\', \'widget\'));
register_widget_control(\'Widget name\', array(\'Widget_Custom_tax_tag_cloud\', \'control\'));
}
}
?>
这是我的网站URL:
http://pagalworldmp.com/