Last active
November 9, 2022 16:31
-
-
Save dcooney/31c61a40a1591bdba5e8b9b512ac9b9d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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