问题描述

我在这里发现了 WPSE,你可以在页面中的 add content before post title 和自定义的帖子类型页面

    add_action( 'load-edit.php', function(){

       $screen = get_current_screen();

        // Only edit post screen:
       if( 'edit-reservation' === $screen->id )
       {
            // Before:
            add_action( 'all_admin_notices', function(){
                echo '<p>Greetings from <strong>all_admin_notices</strong>!</p>';
            });

        }
    });

哪个工作在我的预订自定义帖子类型。但我想知道是否可以在标题后输出内容,但是在使用自定义帖子类型之前可以输出内容?

最佳解决方案

您可以尝试在 WP_List_Table 类中的”hijack” 以下过滤器:

/**
 * Filter the list of available list table views.
 *
 * The dynamic portion of the hook name, `$this->screen->id`, refers
 * to the ID of the current screen, usually a string.
 *
 * @since 3.5.0
 *
 * @param array $views An array of available list table views.
 */
 $views = apply_filters( "views_{$this->screen->id}", $views );

例子

对于 edit-post 屏幕,过滤器为 views_edit-post

/**
 * Display HTML after the 'Posts' title
 * where we target the 'edit-post' screen
 */
add_filter( 'views_edit-post', function( $views )
{
    echo '<p>Greetings from <strong>views_edit-post</strong></p>';

    return $views;
} );

这将显示为:

次佳解决方案

你可以用 JavaScript 来做。

add_action( 'all_admin_notices', function(){
    echo '<script>jQuery(document).ready(function($) {  $( "<p>Greetings from <strong>all_admin_notices</strong>!</p>" ).insertAfter( ".subsubsub" );});</script>';
} );

参考文献

注:本文内容整合自 Google/Baidu/Bing 辅助翻译的英文资料结果。如果您对结果不满意,可以加入我们改善翻译效果:薇晓朵技术论坛。