如何删除wordpress顶级菜单栏?

时间:2016-02-24 14:17:01

标签: wordpress

如何删除这个wordpress顶栏?

enter image description here

我是用css做的,是不是?

            for (var i:int = 0; i < _hotSpotArr.length; i++)
            {
                if (cursor.hitTestObject(_hotSpotArr[i]))
                {
                    cursor.gotoAndStop(2);
                    break;
                }
                else
                {
                    cursor.gotoAndStop(1);
                }
            }

1 个答案:

答案 0 :(得分:5)

您可以使用PHP执行此操作,将其添加到functions.php文件

this

虽然理想情况下应该在子主题中完成,但在主题更新时将撤消。

我认为这样做并没有任何问题,就像你已经用CSS做的那样。

相关问题