Title: Hooks Order
Last modified: August 21, 2016

---

# Hooks Order

 *  [sopedro](https://wordpress.org/support/users/sopedro/)
 * (@sopedro)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/hooks-order/)
 * Hi Themeboy,
 * Sorry, but i can’t find the hook of the description to change the order appearance,
   
   I want to change for eg. the description before table statistics in player page.
 * Can you help me?
 * Thanks,
 * Pedro
 * [https://wordpress.org/plugins/sportspress/](https://wordpress.org/plugins/sportspress/)

Viewing 5 replies - 1 through 5 (of 5 total)

 *  Plugin Author [ThemeBoy](https://wordpress.org/support/users/themeboy/)
 * (@themeboy)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/hooks-order/#post-5045048)
 * Hi Pedro,
 * Good point! I’ll add a filter that you can use to change the order of the descriptions
   in custom posts.
 * Currently, all descriptions are outputted after the templates. I’ll let you know
   what the hook is called when I release the next update.
 *  Thread Starter [sopedro](https://wordpress.org/support/users/sopedro/)
 * (@sopedro)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/hooks-order/#post-5045053)
 * Thank you Themeboy.
 *  Plugin Author [ThemeBoy](https://wordpress.org/support/users/themeboy/)
 * (@themeboy)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/hooks-order/#post-5045074)
 * Hi Pedro,
 * I’ve added the filter “sportspress_{$post_type}_content_priority” to all custom
   post types. It defaults to 10, and the possible positions are:
 * sportspress_before_single_{$post_type} – 5
    sportspress_single_{$post_type}_content–
   10 sportspress_after_single_{$post_type} – 15
 * The content will be inserted after the action. For example, changing the player
   content priority to 5 by using this filter will insert the content between sportspress_before_single_player
   and sportspress_single_player_content:
 *     ```
       add_filter( 'sportspress_player_content_priority', 'my_player_content_priority' );
       function my_player_content_priority() {
       return 5;
       }
       ```
   
 * The hook is available in version 1.1.4
 * [https://wordpress.org/plugins/sportspress/changelog/](https://wordpress.org/plugins/sportspress/changelog/)
 *  Thread Starter [sopedro](https://wordpress.org/support/users/sopedro/)
 * (@sopedro)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/hooks-order/#post-5045373)
 * Hi Themeboy,
 * I came back to this point again.
    I tried this hook but it inserts the description
   before all the template and what i want to do is place de description between
   player details(photo, team, etc…) and the player statistics.
 * Is this possible?
 * Regards,
 * Pedro
 *  Plugin Author [ThemeBoy](https://wordpress.org/support/users/themeboy/)
 * (@themeboy)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/hooks-order/#post-5045374)
 * Hi Pedro,
 * The player profile content is added either before or after the post content, 
   so you’ll need to create a custom template to do this.
 * First, unhook all of the player content actions by adding these 3 lines to your
   theme’s functions.php:
 *     ```
       remove_action( 'sportspress_single_player_content', 'sportspress_output_player_details', 10 );
       remove_action( 'sportspress_single_player_content', 'sportspress_output_player_statistics', 20 );
       remove_action( 'sportspress_single_player_content', 'sportspress_output_br_tag', 100 );
       ```
   
 * Then, following this theme integration guide, create a file in your theme’s folder
   under `sportspress/single-player.php`:
 * [https://sportspresspro.com/docs/theme-integration-guide/](https://sportspresspro.com/docs/theme-integration-guide/)

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Hooks Order’ is closed to new replies.

 * ![](https://ps.w.org/sportspress/assets/icon-256x256.png?rev=1252005)
 * [SportsPress - Sports Club & League Manager](https://wordpress.org/plugins/sportspress/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/sportspress/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/sportspress/)
 * [Active Topics](https://wordpress.org/support/plugin/sportspress/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/sportspress/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/sportspress/reviews/)

 * 5 replies
 * 2 participants
 * Last reply from: [ThemeBoy](https://wordpress.org/support/users/themeboy/)
 * Last activity: [11 years, 9 months ago](https://wordpress.org/support/topic/hooks-order/#post-5045374)
 * Status: not resolved