Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KingYes/11029019 to your computer and use it in GitHub Desktop.
Save KingYes/11029019 to your computer and use it in GitHub Desktop.
Simple code for add custom Widget to Page Builder by Pojo
<?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