This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Add back end wp-admin menu items to the front end toolbar 'site-name' node. | |
* Menu items are added based on the current users capabilities. | |
*/ | |
class KM_WP_Admin_Bar_Front_End_Menu { | |
/** | |
* Prefix for toolbars ids |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// don't use the php tags when copying this in your own theme's functions.php | |
function add_new_query_vars($public_query_vars) { | |
$public_query_vars[] = 'posts_fields'; | |
$public_query_vars[] = 'posts_join'; | |
$public_query_vars[] = 'posts_where'; | |
$public_query_vars[] = 'posts_orderby'; | |
return $public_query_vars; | |
} |
NewerOlder