servus,
ich moechte auf der seite nick-holidays.com die sprachauswahl, welche ueber das plugin qtranslate laeuft, in den header einbauen. bisher ist das widget in der sidebar.
so sieht meine header.php aus:
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<title><?php rvn_put_title(); ?></title>
<!-- Meta-Tags -->
<meta charset="<?php bloginfo('charset'); ?>" />
<!--
<meta name="Theme Name" content="<?php echo THEME_NAME; ?>" />
<meta name="Theme Version" content="<?php echo THEME_VERSION; ?>" />
<meta name="Framework Version" content="<?php echo FW_VERSION; ?>" />
<meta name="WP Version" content="<?php bloginfo('version') ?>"/>
-->
<!-- Main Stylesheet -->
<link rel="stylesheet" href="<?php echo get_bloginfo('stylesheet_url').'?ver='.THEME_VERSION; ?>" type="text/css" media="all" />
<?php
// Get CSS code that was adjusted in the backend options
echo rvn_get_option_css_code();
// Comment Form
if(is_singular()) wp_enqueue_script( 'comment-reply' );
// Scripts and stylesheets of the theme will be included here.
// See file "/lib/frontend/actions.php" and look for
// the functions "rvn_enqueue_scripts_and_styles()" and
// "rvn_put_header_code()".
wp_head();
?>
</head>
<body <?php body_class(rvn_get_body_class()); ?>>
<?php
$layout_size = rvn_get_option('layout-size');
if($layout_size != 'boxed-no-margin') rvn_put_headerbar();
?>
<div id="body-container">
<?php if($layout_size == 'boxed-no-margin') rvn_put_headerbar(); ?>
<header class="main">
<div class="wrapper">
<h1 id="logo">
<a href="<?php echo home_url(); ?>"><?php bloginfo('name'); ?></a>
</h1>
<?php
wp_nav_menu(array(
'theme_location' => 'main',
'container' => 'nav',
'container_class' => 'main',
'fallback_cb' => 'rvn_get_fb_menu',
'depth' => 3
));
?>
</div>
<!-- END .wrapper -->
</header>
<?php
// Put the Top Bar or a selected Slider / Feature Method
rvn_put_topbar_or_feature();
// Put the Welcome Bar
rvn_put_welcomebar();
?>
<div id="main">
<div class="wrapper with-overflow">
kann mir jemand helfen?
lg