Skip to content

Instantly share code, notes, and snippets.

View rob-mathieu's full-sized avatar

Robbie Mathieu rob-mathieu

View GitHub Profile
@rob-mathieu
rob-mathieu / widget-recent-posts.php
Last active January 25, 2020 15:05
A customized recent posts widget for WordPress. Find the full tutorial for implementing the widget in my blog.
<?php
/**
* Widget for a Recent Posts
*/
// Register and load the widget
function load_custom_widget() {
register_widget('Custom_Recent_Posts_Widget');
}