如何在unctions.php中的函数内部调用BloInfo?

时间:2013-12-10 作者:deadfishli

我是WordPress和PHP新手,所以我有一个问题:

我想为我实现的自定义帖子类型添加到“新帖子”的链接。但它只允许我放置静态链接,连接到本地主机测试安装。

如何在此处添加非静态URL,如bloginfo(\'wpurl\') 它真的会读出吗?

这就是我想要的:

 function wp_admin_bar_new_item(){
        global $wp_admin_bar;
        $wp_admin_bar->add_menu(array(
            \'id\'=>\'wp-admin-bar-new-item\',
            \'title\'=>__("Kunstwerk hinzufügen"),

            \'href\'=>//Here it I want a link to my Custom Post Type
            ));
    }
这就是我尝试过但没有成功的方法:

function wp_admin_bar_new_item(){
    global $wp_admin_bar;
    $wp_admin_bar->add_menu(array(
        \'id\'=>\'wp-admin-bar-new-item\',
        \'title\'=>__("Kunstwerk hinzufügen"),

        \'href\'=>\'bloginfo("wpurl");/../../wp-admin/post-new.php?post_type=albertis-kunstwerke\'
        ));
}
这就是我的localhost的工作原理,但我不希望它是静态的。

function wp_admin_bar_new_item(){
    global $wp_admin_bar;
    $wp_admin_bar->add_menu(array(
        \'id\'=>\'wp-admin-bar-new-item\',
        \'title\'=>__("Kunstwerk hinzufügen"),
        \'href\'=>\'http://localhost:8888/test/wp-admin/post-new.php?post_type=albertis-kunstwerke\'
        ));
}

1 个回复
最合适的回答,由SO网友:Shazzad 整理而成

try this

\'href\'=> admin_url("post-new.php?post_type=albertis-kunstwerke")
结束

相关推荐

Multiple URLs with Numbers

我正在尝试更正Wordpress网站上的一个问题,该网站正在以以下格式生成重复页面:/关于美国/康涅狄格州/3/3/关于美国/康涅狄格州/3/3/关于美国/康涅狄格州/3//关于美国/康涅狄格州/3/关于美国/康涅狄格州/我无法确定是什么导致了这种情况的发生。有人能提出阻止这种情况发生的方法吗?谢谢Josh