he guys,
Just started my wordpress website so very new in all these stuff..
but would be great if you could help me!
I have the Auberge theme and downloaden the WP content slide plugin
because I want to have a slide show on the homepage
Now I found that the code of the header should be changed in order to show the slide show.
and this code has to be added:
<?php if(function_exists('wp_content_slider')) { wp_content_slider(); } ?>
This is de code of the header:
<?php
/**
* Website header template
*
* @package Auberge
* @copyright 2014 WebMan - Oliver Juhas
*
* @since 1.0
* @version 1.2
*/
/**
* HTML
*/
wmhook_html_before();
?>
<html class="no-js" <?php language_attributes(); ?>>
<head>
<?php
/**
* HTML head
*/
wmhook_head_top();
wmhook_head_bottom();
wp_head();
?>
</head>
<body id="top" <?php body_class(); ?>>
<?php
/**
* Body
*/
wmhook_body_top();
if ( ! apply_filters( 'wmhook_disable_header', false ) ) {
/**
* Header
*/
wmhook_header_before();
wmhook_header_top();
wmhook_header();
wmhook_header_bottom();
wmhook_header_after();
/**
* Content
*/
wmhook_content_before();
wmhook_content_top();
} // /wmhook_disable_header
?>
could anyone help me finding the place where this code belongs? or which part has to be deleted/added..
Please let me know! Thanks in advance