Note: 只有在创建滑块并添加图像后,安装插件并在模板标记的代码中使用正确的滑块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文件位于主题的根目录中,而不是其结构方式。