Custom Header Right Area (for language switcher for example)
<?php
/**
* Remove default header right area
*/
add_action('init', 'custom_init');
function custom_init() {
remove_action( 'frameshift_header_right', 'frameshift_do_header_right' );
}
/**
* Built header right area
*/
add_action( 'frameshift_header_right', 'custom_do_header_right' );
function custom_do_header_right() { ?>
<div id="language-switcher">
<!-- here comes the code snippet -->
</div><!-- .language-switcher -->
<div id="menu">
<?php echo frameshift_menu( 'main', true ); ?>
</div><!-- .menu --><?php
}