将搜索栏移动到菜单栏中

时间:2016-09-14 作者:Jennifer Sturgis

Our website 正在进行大修。

我们正在通过我们的行业研究工具使用一个自定义搜索栏(现在在主页最顶部),我目前在标题主题文件中有它。有没有办法将其调整到右侧的社交媒体链接部分?我想把它放在当前放大镜图标所在的位置。

This is what the code looks like right now:

<?php
/**
 * The header for our theme.
 *
 * Displays all of the <head> section and everything up till <div id="content">
 *
 * @package Vogue
 */
global $woocommerce;
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( \'charset\' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( \'pingback_url\' ); ?>">

<?php wp_head(); ?>
<div id="wrapper">
  <div id="content">

</head>

<body <?php body_class(); ?>>

<div id="page" class="hfeed site <?php echo sanitize_html_class( get_theme_mod( \'vogue-slider-type\' ) ); ?>">

    <?php get_template_part( \'/templates/header/header-layout-one\' ); ?>

    <?php if ( is_front_page() ) : ?>

        <?php get_template_part( \'/templates/slider/homepage-slider\' ); ?>

    <?php endif; ?>

    <div class="site-container <?php echo ( ! is_active_sidebar( \'sidebar-1\' ) ) ? sanitize_html_class( \'content-no-sidebar\' ) : sanitize_html_class( \'content-has-sidebar\' ); ?>">

1 个回复
SO网友:WebElaine

我建议创建一个儿童主题,而不是直接编辑Vogue文件。如果您直接编辑这些文件,并且有一天您更新了Vogue主题,它将覆盖您的所有编辑。https://www.smashingmagazine.com/2016/01/create-customize-wordpress-child-theme/

您可以在一个名为“header layout one.php”的文件中找到社交媒体图标。要使搜索框向右浮动,请使用“site topbar right”类将其插入div中。

相关推荐

Search results for ACF data

是否可以编写查询以仅从一个自定义字段中搜索数据?我有一个名为“讲座”的CPT,我只想搜索名为“关键字”的自定义字段中的数据,我有:<?php $args = array( \'post_type\' => \'lectures\', \'order\' => \'ASC\', \'posts_per_page\' => -1, \'