Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Test Activity

Testing User Activity

// Register Sidebars
function custom_sidebars() {

	$args = array(
		'id'            => 'myusage',
		'name'          => __( 'My Activity', 'text_domain' ),
		'description'   => __( 'Look at my user activity', 'text_domain' ),
	);
	register_sidebar( $args );

}
add_action( 'widgets_init', 'custom_sidebars' );