Title: Possible post data bug
Last modified: September 10, 2019

---

# Possible post data bug

 *  Resolved [linkin85](https://wordpress.org/support/users/linkin85/)
 * (@linkin85)
 * [6 years, 9 months ago](https://wordpress.org/support/topic/possible-post-data-bug/)
 * When using post data shortcode, and selecting: Filtered post content, it shows
   nothing.
    however when I use post content, it works perfectly.

Viewing 4 replies - 1 through 4 (of 4 total)

 *  Plugin Author [Vova](https://wordpress.org/support/users/gn_themes/)
 * (@gn_themes)
 * [6 years, 8 months ago](https://wordpress.org/support/topic/possible-post-data-bug/#post-11930151)
 * Hi [@linkin85](https://wordpress.org/support/users/linkin85/),
 * this field is intended to be empty. See [the detailed explanation](https://wordpress.stackexchange.com/questions/113387/when-is-the-post-content-filtered-column-in-database-cleared-by-wordpress).
 *  Thread Starter [linkin85](https://wordpress.org/support/users/linkin85/)
 * (@linkin85)
 * [6 years, 8 months ago](https://wordpress.org/support/topic/possible-post-data-bug/#post-11930161)
 * thanks for the reply. I thought it was for inserting post data that has shortcodes,
   which have been executed.
 * any idea how I can achieve that?
 *  Plugin Author [Vova](https://wordpress.org/support/users/gn_themes/)
 * (@gn_themes)
 * [6 years, 8 months ago](https://wordpress.org/support/topic/possible-post-data-bug/#post-11930257)
 * Add the following code to the end of the `functions.php` file of your theme:
 *     ```
       if ( ! function_exists( 'su_post_data_filter' ) ) {
   
       	function su_post_data_filter( $value ) {
       		return do_shortcode( $value );
       	}
   
       }
       ```
   
 * Then, use the following shortcode:
 *     ```
       [su_post field="post_content" post_id="YOUR_POST_ID_HERE" filter="su_post_data_filter"]
       ```
   
 *  Thread Starter [linkin85](https://wordpress.org/support/users/linkin85/)
 * (@linkin85)
 * [6 years, 8 months ago](https://wordpress.org/support/topic/possible-post-data-bug/#post-11931703)
 * Much appreciated!

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Possible post data bug’ is closed to new replies.

 * ![](https://ps.w.org/shortcodes-ultimate/assets/icon-256x256.gif?rev=2547563)
 * [Shortcodes Ultimate - Content Elements](https://wordpress.org/plugins/shortcodes-ultimate/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/shortcodes-ultimate/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/shortcodes-ultimate/)
 * [Active Topics](https://wordpress.org/support/plugin/shortcodes-ultimate/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/shortcodes-ultimate/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/shortcodes-ultimate/reviews/)

 * 4 replies
 * 2 participants
 * Last reply from: [linkin85](https://wordpress.org/support/users/linkin85/)
 * Last activity: [6 years, 8 months ago](https://wordpress.org/support/topic/possible-post-data-bug/#post-11931703)
 * Status: resolved