WordPress label vertical arrangement and quantity control

WordPress label vertical arrangement and quantity control


When I was tinkering with themes recently, I liked the vertical display of the homepage labels of Moonlight Blog, so I wanted to implement it on WordPress.


Paste the following code in the relevant location of the theme sidebar:

<?php
$args = array('pad_counts' => true, 'get' => 'all');
$cats = get_terms('post_tag', ' orderby=count&number=60&order=DESC&hide_empty=0 ' );
?>
<?php foreach( $cats as $category ) : ?>
<a href="<?php echo get_term_link($category, 'post_tag'); ?>"><?php echo $category->name; ?></a>
(<?php echo $category->count; ?>)<br />
<?php unset( $category ); ?>
<?php endforeach; unset( $cats ); ?>

In this code, the get_terms function is mainly used. For details, see the official WordPress documentation. The yellow part is the main variable, which means sorting by the number of tags used (orderby=count), from most to least (order=DESC), and showing 60 tags (number=60).
Display effect:


References to the following articles:
http://codex.wordpress.org/Function_Reference/get_terms
http://wordpress.org/support/topic/number-of-posts-per-category-2?replies=5#post-1274410
http://wordpress.org/support/topic/tag-count-example-tag-13

<<:  BrainHost offers free unlimited hosting for one year

>>:  Synhosting commercial hosting free for half a year

Recommend

IonSwitch: $15/year/1GB memory/10GB SSD space/1TB traffic/1Gbps port/KVM/Dallas

IonSwitch, a hosting provider established in Febr...

GreenCloudVPS: $28.8/year/1GB memory/200GB space/1.5TB traffic/KVM/Los Angeles

GreenCloudVPS is a hosting provider founded in 20...

SpeedyKVM: $36/3 years/256MB memory/12GB space/10TB traffic/KVM/Dallas

SpeedyKVM, a direct sub-brand of Incero Computer ...

virtualcards: You can apply for Mastercard credit card, support Alipay recharge

virtualcards provides a paid application for a Ma...

Tospeed: 10 yuan/month/256MB memory/4GB SSD space/2TB traffic/KVM/Novosibirsk

Tospeed, a Chinese hosting provider, has now laun...

HostMem 1GB RAM Los Angeles CN2 GT KVM VPS Review

Details : HostMem: CN2 GT KVM VPS in Los Angeles,...