【问题标题】:Is there any action in wordpress that points above of posts?wordpress 中是否有任何指向帖子上方的操作?
【发布时间】:2015-07-22 07:20:19
【问题描述】:

我正在尝试编写一个 wordpress 插件,但我找不到指向帖子上方的操作或方式

【问题讨论】:

  • 您想在发布内容之前添加内容吗?

标签: wordpress plugins


【解决方案1】:

试试这个:(在functions.php

add_filter( 'the_content', 'featured_image_before_content' ); 

 function featured_image_before_content( $content ) { 
   /* if ( is_singular('post') && has_post_thumbnail()) { */


        $content = 'YOUR DATA'. $content;

    /*  }*/

    return $content;
}

您可以从这里添加条件:LINK

【讨论】:

    猜你喜欢
    • 2022-01-03
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2015-07-22
    • 1970-01-01
    相关资源
    最近更新 更多