[ad_1]
table press does not show up any more in my custome post page.
my post page show up.
Hi!
Thanks for your post and sorry for the trouble!
It looks like you are using the get_the_content() template tag function (wrapped in wp_kses_post()). This will not work, because Shortcodes are only evaluated when WordPress runs the the_content filter hook, which is called in the the_content() template tag function.
So, if you replace
echo wp_kses_post(get_the_content());with
the_content();the TablePress Shortcodes (and Shortcodes from other plugins) should work fine.
Regards,
Tobias
