YD WPMU Bloglist Widget
Sidebar widget and template function to display an ordered blog list of subsites (with post count) on a page of the WordPress MU main site.
Next Milestone 40
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Rank Changes
Downloads Growth
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
Tracked Keywords
Showing 2 of 2Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- trunk
- Last Updated
- Feb 01, 2013
- Requires WP
- 2.9.1+
- Tested Up To
- 3.5
- PHP Version
- N/A
- Author
- Yann Dubois
Support & Rating
- Rating
- ★ ☆ ☆ ☆ ☆ 1
- Reviews
- 0
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
Frequently Asked Questions
Common questions about YD WPMU Bloglist Widget
I will answer only on that page so that all users can benefit from the answer.
So please come back to see the answer or subscribe to that page's post comments.
Puis-je poser des questions et avoir des docs en français ?
Oui, l'auteur est français.
("but alors... you are French?")
How to display this in the template without using a widget?
Insert this code into your template:
<?php yd_display_wpmu_bloglist() ?>
<select name="select" id="select" onChange="ddjump(this);">
<option selected="selected"><?php _e('Please choose an option below:'); ?></option>
<?php yd_wpmu_bloglist_dropdown( 'show_count=0' ); ?>
</select>
If I don’t want to use the widget, how can I display it in php?
Same answer as above.
What are the function parameters?
All the display parameters can be overloaded in the function call. Here are the available parameters:
column_count
before_block
after_block
before_column
after_column
before_list
after_list
before_item
after_item
before_count
after_count
plural_form
alt_text
title_text
limit
order_by
order
**new since 2.0.0 **
trailing_slash
wpml_support
only_public
skip_archived
skip_mature
skip_spam
skip_deleted
to_skip (comma-delimited list of blog IDs that xill not be displayed)
**new since 2.1.0 **
show_count (can be set to 0 or false to avoid displaying post count)
group_by (needs an option in the blogs' options tables)
before_groupby
after_groupby
For example, here's how to call the function with a bunch of parameters:
<?php yd_display_wpmu_bloglist( 'column_count=1&before_item=<li><b>&after_item=</b></li>' ) ?>
Since version 2.1.0 you can also pass artguments in an array, like this for example:
<?php yd_display_wpmu_bloglist(
true, //echo
array(
'to_skip' => '1,0',
'order_by' => 'domain',
'group_by' => 'continent',
'column_count' => 3,
'show_count' => 0,
'before_block' => '<div>',
'after_block' => '</div>',
'before_column' => '<div class="columns coln">',
'after_column' => '</div>'
)
); ?>
Can I make the function return HTML for further php processing without displaying it?
Yes: just add a first parameter "false". You can add optionnal display customization overload parameters after that.
For example:
<?php $my_html = yd_display_wpmu_bloglist( false, 'column_count=1&before_item=<li><b>&after_item=</b></li>' ) ?>