(MB) YouTube Widget is the #114 ranked social app on WordPress, with a 3.7 average rating from 3 reviews, as of Aug 31, 2026.
(MB) YouTube Widget is a WordPress Plugin Directory app by Mechabyte. With a rating of 3.7★ from 3 reviews, it currently ranks #114 in the Social category.
AppRanks data: (MB) YouTube Widget ranks #114 in Social on WordPress Plugin Directory, placing it in the top 25% of that category.
AppRanks verdict
Generated from live marketplace data — refreshed daily
(MB) YouTube Widget is a mixed-rating WordPress app with a limited review volume. It is listed in the Social category on WordPress Plugin Directory, which AppRanks treats as the canonical taxonomy node for ranking and competitor comparison. 3 reviews put it in the early-traction tier — useful for early-stage stores willing to be on the leading edge. Early-traction review counts are sensitive to single launch periods or feature events, so a 30-day re-check before bigger commitments often resolves whether the trend is sustained. Paid-only pricing means evaluating fit on the marketplace listing or via the developer's documentation before installing. AppRanks tracks rating, review count, pricing tier, and category position daily — the figures on this page reflect the most recent scrape from the canonical WordPress Plugin Directory listing.
Pros
- +Published by Mechabyte — established developer track record
Cons
- −Average rating below 4.0 (3.7★) — read recent low-star reviews before committing
- −Limited review base (3) — ratings can shift significantly with new feedback
Looking to switch from (MB) YouTube Widget?
See (MB) YouTube Widget's alternatives ranked by audit score, rating, and review velocity.
How (MB) YouTube Widget works
Show full descriptionShow less
The YouTube videos widget lets you quickly and easily display your most recent YouTube videos in your blog’s sidebar.
Features
The YouTube videos widget is fully-based on the WordPress Plugin API.
Uses hooks and filters to allow for maximum hackability by theme designers and developers.
Organized straightforwardly so that it’s easy to modify and style.
Usage The YouTube videos widget is ready to use as-is, although you can easily customize it to your liking with a bit of code.
You can also insert a plain list of your recent videos into posts and pages with the shortcode mechabyte_youtube. For example, to load 5 videos from freddiew that open in new tabs, you’d use [mechabyte_youtube username="freddiew" videos="5" tab="true"].
Custom Styles The YouTube videos widget loads it styles by hooking into WordPress’ wp_enqueue_scripts action. To remove the default styling you need to remove the our enqueue_scripts function from the hook.
remove_action( 'wp_enqueue_scripts', array( 'mechabyteYouTube', 'enqueue_scripts' ) );
Custom Output The end user has two options of displaying their YouTube videos: in plain or decorated lists. When modifying the output of the plugin you must use one of two filters that this plugin uses: mbYT_construct_plain and mbYT_construct_decorated. Before you add your own functions to either filter, you must remove the default ones that are used automatically: mbYT_construct_plain_default and mbYT_construct_decorated_default.
remove_filter( 'mbYT_construct_plain', array( 'mechabyteYouTube', 'mbYT_construct_plain_default'), 10, 3 ); remove_filter( 'mbYT_construct_decorated', array( 'mechabyteYouTube', 'mbYT_construct_decorated_default'), 10, 3 );
Now it’s time to get creative. When creating a function that will loop through the videos you have complete control over how you want to display the content. Just keep in mind that in the end, you should be outputting <li> elements. When filters are being applied to the YouTube content, there are three arguments that are being passed through: $youtube_videos (array, the array of videos), $number (integer, the number of videos the user wishes to display), and $tab (boolean, a true/false value of whether or not the user wants to open video links in a new tab).
Keep in mind that you have access to the following pieces of information when creating your video loop:
$item['title'] // Video title $item['videoID'] // Video ID $item['viewCount'] // Video view count $item['published'] // Video publish date -- UNIX $item['duration'] // Video duration in hh:mm:ss $item['numLikes'] // Video likes count $item['link'] // Video link $item['image']['default'] // 'Default' thumbnail (low quality) $item['image']['mqdefault'] // Medium quality thumbnail $item['image']['hqdefault'] // High quality thumbnail
Here’s an example of some code that adds a custom function to our mb_construct_plain filter (assuming we’ve already removed the default functions). Keep in mind the 3 at the end. That lets WordPress expect our three arguments that will be passed through. Check out WordPress’ add_filter() page for more info.
add_filter( 'mb_construct_plain', 'construct_plain_example', 10, 3 );
function construct_plain_example( $youtube_videos, $number, $tab ) { $output = ''; foreach( $youtube_videos as $youtube_video ) { // If we've reached the user's display limit, end the loop if( $i == $number ) break; $output .= '<li>'; $output .= '<a href="' . . '"'; // If the user has selected to open videos in a new tab, specify the link target if($tab) { $output .= ' target="_blank"'; } $output .= '>'; $output .= $youtube_video['title']; $output .= '</a>'; $output .= '</li>';
$i++; } return $output; }
Pretty basic, but it allows you to see a general example of how to loop through the objects and return the modified data.
The above code will produce a list element like this one:
<li><a href="http://www.youtube.com/watch?v=3L-rrkyvApU" target="_blank">Real Life Portal Gun</a></li>
Category rankings
As of Sep 8, 2026- Social#114of 460Top 25%
See 90-day rank history for each category
Track daily rank changes, category shifts, and position volatility.
Competitors & alternatives
(MB) YouTube Widget doesn't have curated competitor matchups yet. Other tracked social apps on WordPress:
Where (MB) YouTube Widget stands in the Social category
(MB) YouTube Widget ranks #114 of 460 apps in the Social category, placing it in the top 25% of the listing.
Frequently asked questions
What is (MB) YouTube Widget?
(MB) YouTube Widget is an app for WordPress. It currently holds a 3.7-star rating from 3 merchant reviews, and AppRanks has been tracking its public marketplace data on the refresh cadence published in our methodology. It is listed under the Social category on AppRanks, where you can see its current category position, review-velocity trend, and how it compares against the top alternatives in the same space. Developed by Mechabyte.
Who uses (MB) YouTube Widget?
Currently around 60 active stores have installed (MB) YouTube Widget. Its review base is still building, which usually maps to early-stage merchants and stores piloting a new workflow. It is part of the Social category on WordPress.
Where does (MB) YouTube Widget rank on WordPress?
(MB) YouTube Widget currently sits at position #114 in the Social category on WordPress. That places it in the top 25% of 460 apps tracked in the same category. Category positions are read from the live marketplace ranking and refresh on each scrape, so the number you see here reflects the most recent crawl rather than a long-running average.