php 过滤以在WooCommerce Memberships的受限内容的帖子标题旁边显示Font Awesome Padlock图标。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 过滤以在WooCommerce Memberships的受限内容的帖子标题旁边显示Font Awesome Padlock图标。相关的知识,希望对你有一定的参考价值。

/*
 *  Filter to display a Font Awesome Padlock Icon next to the post title of restricted content for WooCommerce Memberships.
 */
function wcm_add_icon_next_to_restricted_post( $post_title, $post_id ) {
    if ( is_admin() ) {
        return;
    }

    if ( wc_memberships_is_post_content_restricted( $post_id ) ) {
        return '<i class="fa fa-lock" aria-hidden="true"></i>' . '&nbsp;' . $post_title;
    }

    return $post_title;
}
add_filter( 'the_title', 'wcm_add_icon_next_to_restricted_post', 10, 2 );

以上是关于php 过滤以在WooCommerce Memberships的受限内容的帖子标题旁边显示Font Awesome Padlock图标。的主要内容,如果未能解决你的问题,请参考以下文章

如何获取 woocommerce 订单的订单 ID 以在 functions.php 中的函数中使用?

php Woocommerce文本替换过滤器

php WooCommerce:过滤产品类别列表

php [WooCommerce 360​​ Image]过滤图像大小

php WooCommerce产品搜索过滤器标记

php [WooCommerce 360​​ Image]过滤短代码的内容