使用功能删除主页上的页面标题

时间:2017-01-17 10:19:55

标签: php wordpress

我是php的新手,我正在尝试使用wordpress中的函数删除主页上的页面标题。我搜索了很多,但无法找到答案。我不想使用css display:none;。我在functions.php中想出了这个,但是它不起作用。

$.ajax({

                    url: "/ST/SubmitRequest",
                    dataType: "json",
                    //contentType: "application/json",
                    type: "POST",
                    data: request,
                    //data: r1,
                    success: function (response) {
                        //Setinterval();
                        //alert("Done...!");
                    },
                    failure: function (response) {
                        alert(response.responseText);
                    },
                    error: function (response) {
                        alert(response.responseText);
                    }
                }); 

2 个答案:

答案 0 :(得分:1)

add_filter( 'the_title', 'remove_page_title', 10, 2 );

function remove_page_title( $title, $id ) {
    if( is_home() || is_front_page() )
        return '';

    return $title;
}

请您尝试上面的代码吗?

答案 1 :(得分:0)

此外,如果您想使用插件,那么Hide title插件可以完成这项工作。它通过编辑帖子屏幕在页面和帖子上隐藏标题。