| 1 |
<?php |
| 2 |
/**------------------------------------------------------------------------ * |
| 3 |
* Debugger functions |
| 4 |
* |
| 5 |
* Include this file for debugging |
| 6 |
* ------------------------------------------------------------------------ */ |
| 7 |
|
| 8 |
// Debugger |
| 9 |
//add_filter('the_content', 'bnfw_debug'); |
| 10 |
|
| 11 |
// function bnfw_debug($content){ |
| 12 |
// $bnfw_options = get_option('bnfw_settings'); |
| 13 |
|
| 14 |
// if ( !isset( $wp_roles ) ) |
| 15 |
// $wp_roles = new WP_Roles(); |
| 16 |
// var_dump($wp_roles->get_names()); |
| 17 |
|
| 18 |
// var_dump($bnfw_options); |
| 19 |
// return $content; |
| 20 |
// } |
| 21 |
?> |
| 22 |
|