Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /*
- Plugin Name: GeoDirectory - Compatibility Plugin with KLEO Theme
- Plugin URI: n/a
- Description: This plugin integrates Geodirectory with the KLEO Wordpress Theme
- Version: 1.0.0
- Author: Steven Duque
- Author URI: http://stevenduque.com
- */
- // BECAUSE THIS PLUGIN IS CALLED BEFORE GD WE MUST CALL THIS PLUGIN ONCE GD LOADS
- add_action( 'plugins_loaded', 'geodir_mytheme_action_calls', 10 );
- function geodir_mytheme_action_calls(){
- /* ACTIONS
- ****************************************************************************************/
- // WRAPPER OPEN ACTIONS
- remove_action( 'geodir_wrapper_open', 'geodir_action_wrapper_open', 10 );
- add_action( 'geodir_wrapper_open', 'geodir_mytheme_action_wrapper_open', 9 );
- // WRAPPER CLOSE ACTIONS
- remove_action( 'geodir_wrapper_close', 'geodir_action_wrapper_close', 10);
- add_action( 'geodir_wrapper_close', 'geodir_mytheme_action_wrapper_close', 11);
- // WRAPPER CONTENT OPEN ACTIONS
- remove_action( 'geodir_wrapper_content_open', 'geodir_action_wrapper_content_open', 10 );
- add_action( 'geodir_wrapper_content_open', 'geodir_mytheme_action_wrapper_content_open', 9, 3 );
- // WRAPPER CONTENT CLOSE ACTIONS
- remove_action( 'geodir_wrapper_content_close', 'geodir_action_wrapper_content_close', 10);
- add_action( 'geodir_wrapper_content_close', 'geodir_mytheme_action_wrapper_content_close', 11);
- // SIDEBAR RIGHT OPEN ACTIONS
- remove_action( 'geodir_sidebar_right_open', 'geodir_action_sidebar_right_open', 10 );
- add_action( 'geodir_sidebar_right_open', 'geodir_mytheme_action_sidebar_right_open', 10, 4 );
- // SIDEBAR RIGHT CLOSE ACTIONS
- remove_action( 'geodir_sidebar_right_close', 'geodir_action_sidebar_right_close', 10 );
- add_action( 'geodir_sidebar_right_close', 'geodir_mytheme_action_sidebar_right_close', 10, 1 );
- } // Close geodir_mytheme_action_calls
- /* FUNCTIONS
- ****************************************************************************************/
- // WRAPPER OPEN FUNCTIONS
- function geodir_mytheme_action_wrapper_open() {
- echo '<div id="my-outer-wrapper">';
- }
- // WRAPPER CLOSE FUNCTIONS
- function geodir_mytheme_action_wrapper_close() {
- echo '</div>';
- }
- // WRAPPER CONTENT OPEN FUNCTIONS
- function geodir_mytheme_action_wrapper_content_open($type='',$id='',$class='') {
- echo '<div class="my-content-wrapper">';
- }
- // WRAPPER CONTENT CLOSE FUNCTIONS
- function geodir_mytheme_action_wrapper_content_close() {
- echo '</div>';
- }
- // SIDEBAR RIGHT OPEN FUNCTIONS
- function geodir_mytheme_action_sidebar_right_open($type='',$id='',$class='',$itemtype='') {
- echo '<aside id="my-sidebar-wrapper">';
- }
- // SIDEBAR RIGHT CLOSE FUNCTIONS
- function geodir_mytheme_action_sidebar_right_close($type='') {
- echo '</aside>';
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement