php 布局构建器中的facetwp注释

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 布局构建器中的facetwp注释相关的知识,希望对你有一定的参考价值。

<?php
/** output comments in layout builder
 ** add a placeholder (Post ID is a good choice) to layout builder and name it comment-output
 ** replace the value with the filter below
 ** to change the template file for the output if you need it different comments on
 ** single posts, copy comments.php to a new file (ie - comments-builder.php)
 ** and include the file name in the function - comments_template( '/comments-builder.php' );
 **/
add_filter( 'facetwp_builder_item_value', function( $value, $item ) {
    if ( 'comment-output' == $item['settings']['name'] ) {		
      global $withcomments;
      $withcomments = "1";
      ob_start();
      if ( comments_open() || get_comments_number() ) {
        comments_template();
      }
      $value = ob_get_clean();
    }
    return $value;
}, 10, 2 );

以上是关于php 布局构建器中的facetwp注释的主要内容,如果未能解决你的问题,请参考以下文章

php 布局构建器中的facetwp数组处理

php facetwp更改布局构建器中的日期格式

php facetwp链接布局构建器中的所有内容

php 带有附件ID的布局构建器中的facetwp自定义字段

php facetwp自定义图像在布局构建器中提供图像大小

php facetwp woocommerce布局构建器