Adding shortcake on category page
-
Hi,
I am on the Genesis theme, which does not allow shortcode on category pages.I found this code to make it happen anyway:
add_action(‘genesis_before_post’, ‘gravity_form_before_content‘);
function gravity_form_before_content() {
if (is_category()) {
echo do_shortcode(‘[gravityform id=1 title=false description=false ajax=true]’);
}
}except of course I need to replace the gravity form calls with table press calls, so my shortcode will work.
PHP coding is out of my league so I couldn’t figure out which functions to use.
Can you help?
Thanks. Marianne
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Adding shortcake on category page’ is closed to new replies.