Skip to content

Instantly share code, notes, and snippets.

@tdmrhn
Created September 18, 2023 06:05
Show Gist options
  • Save tdmrhn/ae1a3ef03903a8366ec2ee117a7e5a81 to your computer and use it in GitHub Desktop.
Save tdmrhn/ae1a3ef03903a8366ec2ee117a7e5a81 to your computer and use it in GitHub Desktop.
Blocksy Posts Navigation to Product Single Page
add_action('woocommerce_after_main_content', function () {
if (is_product()) {
echo blocksy_post_navigation();
}
}, 10);
add_action('wp_enqueue_scripts', function () {
if (is_product()) {
wp_enqueue_style('blocksy-post-navigation','/wp-content/themes/blocksy/static/bundle/posts-nav.min.css');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment