Skip to content

Instantly share code, notes, and snippets.

@dcooney
Last active November 9, 2022 16:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dcooney/31c61a40a1591bdba5e8b9b512ac9b9d to your computer and use it in GitHub Desktop.
Save dcooney/31c61a40a1591bdba5e8b9b512ac9b9d to your computer and use it in GitHub Desktop.
<?php
$categories = get_the_category();
if ( ! empty( $categories ) ) {
$current_cat = esc_html( $categories[0]->name );
}
echo do_shortcode('[ajax_load_more single_post="true" single_post_id="'. get_the_ID() .'" single_post_target=".type-post" post_type="post" single_post_order="query" category="' . $current_cat . '" pause_override="true"]'); ?>
OR
<?php
echo do_shortcode('[ajax_load_more single_post="true" single_post_id="'. get_the_ID() .'" single_post_target=".type-post" post_type="post" single_post_order="query" taxonomy="category" taxonomy_terms="' . $current_cat . '" taxonomy_operator="IN" pause_override="true"]'); ?>
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment