Skip to content

Instantly share code, notes, and snippets.

@paulgibbs
Created May 22, 2013 20:02
Show Gist options
  • Save paulgibbs/5630455 to your computer and use it in GitHub Desktop.
Save paulgibbs/5630455 to your computer and use it in GitHub Desktop.
How to load a custom extension for the Achievements for WordPress plugin
<?php
function pg_init_custom_extension() {
achievements()->extensions->your_extension = new Your_DPA_Extension_Class;
}
add_action( 'dpa_ready', 'pg_init_custom_extension' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment