Last active
June 18, 2022 10:29
-
-
Save Codevz/6a6c8e10b40c2ab3c4342b257f6c489e to your computer and use it in GitHub Desktop.
XTRA WP Theme - Action hook for adding content after pagination in posts archive, https://xtratheme.com/
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
| <?php | |
| /** | |
| * With this function you can add any content or php codes after pagination. | |
| */ | |
| function my_prefix_after_pagination() { | |
| echo 'This is a custom content text.'; | |
| } | |
| add_action( 'codevz/after_pagination', 'my_prefix_after_pagination' ); |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you want to see more actions and hooks of XTRA WP theme, Please check out documentation here https://xtratheme.com/docs/developer/