EduardET

Load custom blog module

Dec 21st, 2017
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.63 KB | None | 0 0
  1. /*================================================
  2. #4 Load custom Blog Module - by SpiritDesigns via Eduard -
  3. The new Blog Module, will only be available in BB,
  4. this will be fixed in upcoming updates of DiVi
  5. ================================================*/
  6. function custom_modules_css() {
  7.     echo '<style>
  8.             .et-pb-all-modules li.et_pb_blog_wpc:before {
  9.                 content: "\34";
  10.             }
  11.     </style>';
  12. }
  13. add_action('admin_head', 'custom_modules_css');
  14.  
  15. function divi_child_theme_add_custom_module() {
  16.     get_template_part( 'custom-modules/Blog' );
  17.     new WPC_ET_Builder_Module_Blog();
  18. }
  19. add_action('et_builder_ready', 'divi_child_theme_add_custom_module' );
Advertisement
Add Comment
Please, Sign In to add comment