Title: Changing load order
Last modified: August 30, 2016

---

# Changing load order

 *  Resolved [Rose](https://wordpress.org/support/users/thorned-rose/)
 * (@thorned-rose)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/changing-load-order/)
 * On my website, the CC license is above the footnotes (another plugin that automatically
   generates an output at the end of a post).
 * Does anyone know how to force the CC plugin to load last so that it’s actually
   at the bottom of posts? TIA!
 * [https://wordpress.org/plugins/creative-commons-configurator-1/](https://wordpress.org/plugins/creative-commons-configurator-1/)

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

 *  Plugin Author [George Notaras](https://wordpress.org/support/users/gnotaras/)
 * (@gnotaras)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/changing-load-order/#post-6805334)
 * Hello [@thorned-rose](https://wordpress.org/support/users/thorned-rose/)
 * Thanks for your feedback.
 * The license block is added at the end of the content via a filtering function
   with priority 250. To change the priority of the CC-Configurator’s filtering 
   function, you can add the following in your theme’s `functions.php`:
 *     ```
       remove_filter('the_content', 'bccl_append_to_post_body');
       add_filter('the_content', 'bccl_append_to_post_body', 9999);
       ```
   
 * The above basically removes the filtering function and re-adds it with bigger
   priority. Think of priority as the order of execution of all the filtering functions
   attached to the `the_content` hook.
 * Hope this helps.
 * BTW, for faster responses, please use the Github issue tracker.
 * Kind Regards,
    George
 *  Plugin Author [George Notaras](https://wordpress.org/support/users/gnotaras/)
 * (@gnotaras)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/changing-load-order/#post-6805335)
 * After a second thought, future releases will have this priority set to 99999 
   so as to make sure the licensing block appears last. There is no valid reason
   for displaying it before any other post content.
 * Thanks for your feedback. I’ll now mark this topic as resolved.
 * George

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

The topic ‘Changing load order’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/creative-commons-configurator-1.svg)
 * [Creative Commons Configurator](https://wordpress.org/plugins/creative-commons-configurator-1/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/creative-commons-configurator-1/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/creative-commons-configurator-1/)
 * [Active Topics](https://wordpress.org/support/plugin/creative-commons-configurator-1/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/creative-commons-configurator-1/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/creative-commons-configurator-1/reviews/)

## Tags

 * [load order](https://wordpress.org/support/topic-tag/load-order/)

 * 2 replies
 * 2 participants
 * Last reply from: [George Notaras](https://wordpress.org/support/users/gnotaras/)
 * Last activity: [10 years, 6 months ago](https://wordpress.org/support/topic/changing-load-order/#post-6805335)
 * Status: resolved