php 将切换搜索图标添加到标题菜单模块中

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 将切换搜索图标添加到标题菜单模块中相关的知识,希望对你有一定的参考价值。

@media only screen and (min-width: 992px ){
    .add-search-icon .fl-module-content .menu {
        margin-right: 10px;
    }
 
    .fl-row-content-wrap .fl-page-nav-search {
        margin-top: 20px;
    }
 
    .fl-row-content-wrap .fl-page-nav-search a {
        color: #fff;
    }
}
<?php
/**
 * Adding search icon at right side of the menu module
 * Must be using Beaver theme
 * @return void
 */
add_action( 'fl_builder_after_render_module', 'xmit_add_search_icon_themer_header', 10 );
function xmit_add_search_icon_themer_header( $module )
{
    //* Checking that you are using BB Theme
    if( ! class_exists( 'FLTheme' ) )
        return;
    
    $id = '';
    
    if( $module->settings->class === "add-search-icon" )
        $id = $module->node;
        
    if( $module->settings->type == "menu" && $module->node == $id )
    {
        //* Display the search icon
        FLTheme::nav_search();
    }
 
     return;
}

以上是关于php 将切换搜索图标添加到标题菜单模块中的主要内容,如果未能解决你的问题,请参考以下文章

php 将WooCommerce购物车图标/项添加到top_nav菜单区域作为最后一项。

PHP 如何自动将搜索字段添加到导航菜单中| WordPress的

php 将搜索框添加到菜单

将图标添加到引导下拉菜单项

如何将自定义图标添加到 Oro 前台菜单项?

在 Drupal 7 中,如何使用“搜索视图”模块将搜索词过滤器添加到我的视图中?