| 1 |
<?php |
| 2 |
/** |
| 3 |
* Themes must declare that they support this module by adding |
| 4 |
* add_theme_support( 'tonesque' ); on 'after_setup_theme'. |
| 5 |
*/ |
| 6 |
function jetpack_load_tonesque() { |
| 7 |
if ( current_theme_supports( 'tonesque' ) ) |
| 8 |
jetpack_require_lib( 'tonesque' ); |
| 9 |
} |
| 10 |
add_action( 'init', 'jetpack_load_tonesque' ); |
| 11 |
|