php 从所有cpt和页面中删除作者框。但是在博客上显示

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 从所有cpt和页面中删除作者框。但是在博客上显示相关的知识,希望对你有一定的参考价值。

// Add author box to single posts and author archives
add_filter( 'get_the_author_genesis_author_box_single', '__return_true' );
add_filter( 'get_the_author_genesis_author_box_archive', '__return_true' );
// And remove it from anything that's not a post
add_action ('genesis_entry_footer', 'wpm_remove_author_box' );
function wpm_remove_author_box() {
  if ( get_post_type() != 'post' ) {
    remove_action( 'genesis_after_entry', 'genesis_do_author_box_single', 8 );
  }
}

以上是关于php 从所有cpt和页面中删除作者框。但是在博客上显示的主要内容,如果未能解决你的问题,请参考以下文章

php 从CPT中删除Slug

页面上的多个更新面板从文本框中删除 JavaScript Datepicker 日历

从存档调用的 CPT 页面上的 Wordpress 上一个和下一个链接

php 页面-CPT-上市与 - pagination.php

php ACF Pro - CPT的选项页面

php ACF Pro - CPT的选项页面