Last active
January 11, 2017 05:28
-
-
Save rali14/66689ad4c33b0e7376991a996345d98c to your computer and use it in GitHub Desktop.
Add Information into listings footer on the listing grid on Listify theme.
This file contains hidden or 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
function add_information_to_listing_footer() { | |
global $post; | |
echo '<h2>hello!</h2>'; | |
} | |
add_action( 'listify_content_job_listing_footer', 'add_information_to_listing_footer', 25 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment