Esempio n. 1
0
 function tags_tab()
 {
     echo '<div class="tags">';
     if (function_exists('wp_cumulus_insert')) {
         $args = array('width' => 280, 'height' => 280);
         wp_cumulus_insert($args);
     } else {
         wp_tag_cloud('smallest=9&largest=16');
     }
     echo '</div>';
 }
Esempio n. 2
0
	<div class="bottom-mid">
		<?php 
if (!function_exists('dynamic_sidebar') || !dynamic_sidebar('Bottom Middle')) {
    ?>
		<?php 
    wp_list_bookmarks('category_before=&category_after=&categorize=0&title_li=Blog<span>roll</span>&limit=10&orderby=rand');
    ?>
		<?php 
}
?>
	</div>

	<div class="bottom-right">
         <h2>タグクラウド</h2>
        <?php 
wp_cumulus_insert();
?>
  
		<?php 
if (!function_exists('dynamic_sidebar') || !dynamic_sidebar('Bottom Right')) {
    ?>
			<?php 
    if (function_exists('get_flickrrss')) {
        ?>
			<div class="flickr">
				<h2><?php 
        _e('Flickr Photos');
        ?>
</h2>
				<!--ul--><?php 
        get_flickrrss();
Esempio n. 3
0
 public function tags_tab()
 {
     echo '<div class="tagcloud">';
     if (function_exists('wp_cumulus_insert')) {
         $args = array('width' => 280, 'height' => 280);
         wp_cumulus_insert($args);
     } else {
         wp_tag_cloud();
     }
     echo '</div>';
 }