Esempio n. 1
0
 public function beforeRenderShortcodes($content)
 {
     /*
     global $authordata;
     $authordata_old = $authordata;
     $current_post_id = FLBuilderModel::get_post_id();
     if ( $current_post_id ) {
     	$current_post_author = get_post_field( 'post_author', $current_post_id );
     	$authordata = new WP_User( $current_post_author );
     }
     */
     $content = WPV_Frontend_Render_Filters::pre_process_shortcodes($content);
     /*
     $authordata = $authordata_old;
     */
     return $content;
 }