Advertisement
Guest User

Untitled

a guest
Jun 12th, 2012
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.66 KB | None | 0 0
  1. <?php
  2. $aside_cat = 1;
  3. $aside_number = 5;
  4. ?>
  5.  
  6. <div id="sidebar">
  7. <ul class="xoxo">
  8. <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(1) ) : // begin first sidebar widgets ?>
  9. <li id="ad300x250" class="adblock">
  10. <p class="adtitle"><?php _e( 'Реклама', 'wpbx' ) ?></p>
  11. <?php include (TEMPLATEPATH . '/ads/ads-300x250.php'); ?>
  12. </li>
  13. <?php endif; // end first sidebar widgets ?>
  14.  
  15. <li id="tabber" class="widget_block tablist">
  16. <ul class="clearfix">
  17. <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(2) ) : // begin second sidebar widgets ?>
  18.  
  19. <?php if (function_exists('get_most_rated')): ?>
  20. <li id="mostrated" class="widget">
  21. <h3 class="tabber-title"><?php _e( 'Шокиращи', 'wpbx' ) ?></h3>
  22. <ul>
  23. <?php get_most_rated('post', 0, 5); ?>
  24. </ul>
  25. </li>
  26. <?php endif; ?>
  27.  
  28. <?php if (function_exists('get_most_viewed')): ?>
  29. <li id="mostview" class="widget">
  30. <h3 class="tabber-title"><?php _e( 'Популярни', 'wpbx' ) ?></h3>
  31. <ul>
  32. <?php get_most_viewed('post', 5); ?>
  33. </ul>
  34. </li>
  35. <?php endif; ?>
  36.  
  37. <?php if (function_exists('mdv_most_commented')): ?>
  38. <li id="mostcomm" class="widget">
  39. <h3 class="tabber-title"><?php _e( 'Коментирани', 'wpbx' ) ?></h3>
  40. <ul>
  41. <?php mdv_most_commented(); ?>
  42. </ul>
  43. </li>
  44. <?php endif; ?>
  45.  
  46. <?php endif; // end second sidebar widgets ?>
  47. </ul>
  48. </li>
  49.  
  50. <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(3) ) : // begin third sidebar widgets ?>
  51. <li id="archives-link">
  52. <h3 class="widget-title"><?php _e( 'Archives', 'wpbx' ) ?></h3>
  53. <span class="browse"><a href="<?php bloginfo('url'); ?>/archives" title="Browse the archives"><?php _e( 'Разгледай архивите', 'wpbx' ) ?></a></span>
  54. <p><?php _e( 'Разгледай някои по-стари статии.', 'wpbx' ) ?></p>
  55. </li>
  56.  
  57. <li id="asides">
  58. <h3 class="widget-title"><?php _e( 'Топ Класации', 'wpbx' ); ?></h3>
  59. <?php $asides = new WP_Query("cat=$aside_cat&showposts=$aside_number"); while($asides->have_posts()) : $asides->the_post(); ?>
  60. <div class="entry-block clearfix">
  61. <?php
  62. $aside_preview = get_post_custom_values("entry-preview");
  63. if ( is_array($aside_preview) ) { ?>
  64. <img class="entry-image block-image" src="<?php bloginfo('template_directory'); ?>/scripts/timthumb.php?src=<?php echo get_post_meta($post->ID, 'entry-preview',true) ?>&amp;w=75&amp;h=65&amp;zc=1" alt="<?php the_title(); ?>" />
  65. <?php } else { ?>
  66. <img class="entry-image block-image" src="<?php bloginfo('template_directory'); ?>/images/image-blank-small.jpg" alt="<?php the_title(); ?>" />
  67. <?php } ?>
  68.  
  69. <div class="block-content">
  70. <h4 class="block-title"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('%s'), wp_specialchars(get_the_title(), 1)) ?>"><?php the_title(); ?></a></h4>
  71. <?php the_excerpt(''); ?>
  72. </div>
  73. </div>
  74. <?php endwhile; ?>
  75. </li><!-- end Asides section -->
  76.  
  77. <li id="ad300x100" class="adblock">
  78. <?php include (TEMPLATEPATH . '/ads/ads-300x100.php'); ?>
  79. </li>
  80.  
  81. <?php if ( function_exists('wp_tag_cloud') ) : ?>
  82. <li id="tag-cloud">
  83. <h3 class="widget-title"><?php _e('Популярни Тагове'); ?></h3>
  84. <div>
  85. <?php wp_tag_cloud('smallest=8&largest=18&number=15'); ?>
  86. </div>
  87. </li><!-- end Popular Tags section -->
  88. <?php endif; ?>
  89.  
  90. <?php wp_list_bookmarks('title_before=<h3 class="widget-title">&title_after=</h3>&show_images=0') ?>
  91.  
  92. <?php endif; // end third sidebar widgets ?>
  93. </ul>
  94. </div><!-- #sidebar -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement