Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

wprecipes dashboard

class WPRecipes_Dashboard_Widget {

	public function __construct() {
		
		add_action( 'wp_dashboard_setup', array( $this, 'add_dashboard_widget' ) );

	}

	public function add_dashboard_widget() {

		wp_add_dashboard_widget(
			'wprecipes_dashboard',
			__( 'WP Recipes', 'wprecipes' ),
			array( $this, 'render_dashboard_widget' ),
			array( $this, 'save_dashboard_widget' )
		);

	}

	public function render_dashboard_widget() {


	}

	public function save_dashboard_widget() {


	}

}

new WPRecipes_Dashboard_Widget;