Skip to content

Instantly share code, notes, and snippets.

@Codevz
Last active June 18, 2022 10:29
Show Gist options
  • Select an option

  • Save Codevz/6a6c8e10b40c2ab3c4342b257f6c489e to your computer and use it in GitHub Desktop.

Select an option

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/
<?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' );
@Codevz
Copy link
Copy Markdown
Author

Codevz commented Jan 18, 2022

If you want to see more actions and hooks of XTRA WP theme, Please check out documentation here https://xtratheme.com/docs/developer/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment