Created
April 18, 2014 07:18
-
-
Save KingYes/11029019 to your computer and use it in GitHub Desktop.
Simple code for add custom Widget to Page Builder by Pojo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function add_social_widget_to_page_builder( $widgets ) { | |
$widgets[] = 'Pojo_Widget_Social_Links'; | |
return $widgets; | |
} | |
add_filter( 'pb_page_builder_widgets', 'add_social_widget_to_page_builder' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment