显示在主页顶部的图像滑块

时间:2014-05-24 作者:user3528624

我已经安装了一个滑块,但是我希望它位于页面顶部的导航下。然而,我不知道如何做到这一点。

        <?php
/**
 * The Header for our theme.
 *
 * Displays all of the <head> section and everything up till <div id="content">
 *
 * @package GovPress
 */
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( \'charset\' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><?php wp_title( \'|\', true, \'right\' ); ?></title>
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( \'pingback_url\' ); ?>">
<!--[if lt IE 9]>
<script src="<?php echo esc_url( get_template_directory_uri() . \'/js/html5.js\' ); ?>"></script>
<![endif]-->
<?php wp_head(); ?>
</head>

        <body <?php body_class(); ?>>
<div id="page" class="hfeed site">

    <?php do_action( \'before\' ); ?>


    </nav><!-- #site-navigation -->

    <header id="masthead" class="site-header" role="banner">
        <div class="site-branding col-width">
            <?php if ( get_header_image() ) : ?>
                <a href="<?php echo esc_url( home_url( \'/\' ) ); ?>" rel="home">
                    <img src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="">
                </a>
            <?php endif; // End header image check. ?>
            <h1 class="site-title"><a href="<?php echo esc_url( home_url( \'/\' ) ); ?>" rel="home"><?php bloginfo( \'name\' ); ?></a></h1>
            <h2 class="site-description"><?php bloginfo( \'description\' ); ?></h2>
        </div>

1 个回复
SO网友:Brad Dalton

enter image description hereNote: 只有在创建滑块并添加图像后,安装插件并在模板标记的代码中使用正确的滑块ID时,滑块才会显示。我在下面发布的截图证明了我的代码是有效的。

这是标题。第36行带有滑块模板标记的php代码

<?php
/**
 * The Header for our theme.
 *
 * Displays all of the <head> section and everything up till <div id="content">
 *
 * @package GovPress
 */
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( \'charset\' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><?php wp_title( \'|\', true, \'right\' ); ?></title>
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( \'pingback_url\' ); ?>">
<!--[if lt IE 9]>
<script src="<?php echo esc_url( get_template_directory_uri() . \'/js/html5.js\' ); ?>"></script>
<![endif]-->
<?php wp_head(); ?>
</head>

<body <?php body_class(); ?>>
<div id="page" class="hfeed site">

    <?php do_action( \'before\' ); ?>

    <nav id="site-navigation" class="main-navigation" role="navigation">
        <div class="col-width">
            <h1 class="menu-toggle"><?php _e( \'Menu\', \'govpress\' ); ?></h1>
            <a class="skip-link screen-reader-text" href="#content"><?php _e( \'Skip to content\', \'govpress\' ); ?></a>

            <?php wp_nav_menu( array(\'theme_location\' => \'primary\', \'menu_class\' => \'nav-menu\' ) ); ?>
        </div>
    </nav><!-- #site-navigation -->
<?php if ( is_front_page && function_exists( \'soliloquy\' ) ) { soliloquy( \'demo\', \'slug\' ); } ?>
    <header id="masthead" class="site-header" role="banner">
        <div class="site-branding col-width">
            <?php if ( get_header_image() ) : ?>
                <a href="<?php echo esc_url( home_url( \'/\' ) ); ?>" rel="home">
                    <img src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="">
                </a>
            <?php endif; // End header image check. ?>
            <h1 class="site-title"><a href="<?php echo esc_url( home_url( \'/\' ) ); ?>" rel="home"><?php bloginfo( \'name\' ); ?></a></h1>
            <h2 class="site-description"><?php bloginfo( \'description\' ); ?></h2>
        </div>
    </header><!-- #masthead -->

    <?php if ( is_page_template(\'templates/home-page.php\') ) {
        get_template_part( \'templates/above\', \'home-page\' );
    } ?>

    <div class="col-width">
        <div id="content" class="site-content">
假设您使用的是独白Lite滑块插件:

<?php if ( is_front_page && function_exists( \'soliloquy\' ) ) { soliloquy( \'demo\', \'slug\' ); } ?>
在Govpress主题中有一个主页。您可能希望将滑块的模板标记粘贴到的php文件中。

不知道为什么主题开发人员没有头版。php或主页。php文件位于主题的根目录中,而不是其结构方式。

结束

相关推荐

当尝试向我的登录页面添加一个css文件时,会出现“Headers Always Sent”?

我看过的每一篇关于这个主题的教程都已经过时了,所以我希望这里的人能帮助我。我想为我的wp登录设置样式。带有CSS文件的php页面。但我想以一种在Wordpress更新时不会被覆盖的方式来做。据我所知,根据我读到的图茨,在我的主题函数中使用函数添加它的最佳方式。php文件。不幸的是,人们建议使用的代码并不适合我。这是我添加的代码。<?php function custom_login() { echo \'<link rel=\"stylesheet\" href=\"wplog