Skip to content

Instantly share code, notes, and snippets.

@Swapnildhanrale
Last active January 9, 2020 12:07
Show Gist options
  • Save Swapnildhanrale/760190099d6723ccb0805e5bccdd623b to your computer and use it in GitHub Desktop.
Save Swapnildhanrale/760190099d6723ccb0805e5bccdd623b to your computer and use it in GitHub Desktop.
Display Astra tags
<?php
/**
* Add category above the title in Astra Theme
*
* @todo Change the `prefix_` and with your own unique prefix.
*
* @since 1.0.0
*/
if( ! function_exists( 'prefix_function_name' ) ) :
function prefix_function_name() {
?>
<div class="tags">
<?php echo astra_post_tags(); ?>
</div>
<?php
}
add_action( 'astra_single_post_title_before', 'prefix_function_name' );
endif;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment