Skip to content

Instantly share code, notes, and snippets.

@HoussenMoshine
Created June 22, 2017 07:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HoussenMoshine/be0880c56152d52e2f60484889e02520 to your computer and use it in GitHub Desktop.
Save HoussenMoshine/be0880c56152d52e2f60484889e02520 to your computer and use it in GitHub Desktop.
Code pour supporter l'AMP (Accelerated Mobile Pages) dans bbPress (plugin Code Snippets)
/**
* Ajoute le format de l'AMP (Accelerated Mobile Pages) pour bbPress
*/
add_action( 'amp_init', 'amp_bbpress_init' );
function amp_bbpress_init() {
add_post_type_support( 'topic', AMP_QUERY_VAR );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment