菜单栏Wordpress中的中心自定义登录字段

时间:2016-01-02 15:16:32

标签: wordpress login menu

我发现此代码添加了一个登录名&密码字段进入我的wordpress主题的菜单栏。到目前为止看起来很不错但非常不合适..

    add_filter('wp_nav_menu_items', 'add_login_logout_link', 10, 2);

function add_login_logout_link($items, $args) {
        // start buffering
        ob_start();
        // this is the actual form function
        wp_login_form($args); // $args optional see below ..
        // get buffering
        $loginoutform = ob_get_contents();
        // clean buffering
        ob_end_clean();
        $items .= $loginoutform ; // concatenate buffering with items ...
    return $items;
}

它将自己置于主菜单导航下方的右侧。我想要做的是在菜单栏中水平居中登录字段。

我非常感谢任何信息或代码,以帮助我实现我想要的时尚登录选项。网站为https://cypherbeats.com

0 个答案:

没有答案