Skip to content

Social Menu

Ben Gillbanks edited this page Jul 28, 2020 · 2 revisions

Add a social menu to your theme.

For this to work you should add a reference to the toolbelt_social_menu function. I would recommend something like:

function my_social_menu() {
	if ( function_exists( 'toolbelt_social_menu' ) ) {
		toolbelt_social_menu();
	}
}