PATH:
home
/
sparklp6
/
public_html
/
website_356c8563
/
wp-content
/
plugins
/
essential-blocks
/
views
/
post-partials
<?php use EssentialBlocks\Utils\Helper; $contentHTML = ''; $contentHTML .= $showContent || $showReadMore ? '<div class="ebpg-entry-content">' : ''; if ( $showContent ) { $_content = ! empty( $result->post_excerpt ) ? $result->post_excerpt : $result->post_content; $_content = Helper::removeHtmlTagWithInnerContents( $_content, [ 'figure' ] ); $content = $block_object->truncate( wp_kses_post( wp_strip_all_tags( $_content ) ), $contentLength ); if ( post_password_required( $result->ID ) ) { $content = __( 'This content is password protected.', 'essential-blocks' ); } $post_classes = $block_object->get_name() == 'post-grid' ? 'ebpg-grid-post-excerpt' : 'ebpg-carousel-post-excerpt'; $contentHTML .= sprintf( '<div class="%3$s"> <p>%1$s%2$s</p> </div>', $content, $expansionIndicator, $post_classes ); } $contentHTML .= require __DIR__ . '/read-more.php'; $contentHTML .= $showContent || $showReadMore ? '</div>' : ''; return $contentHTML;
[-] featured-post-markup.php
[edit]
[-] .htaccess
[edit]
[-] carousel-markup.php
[edit]
[-] post-thumbnail.php
[edit]
[+]
meta
[-] title.php
[edit]
[-] post-content.php
[edit]
[-] read-more.php
[edit]
[-] category-filter.php
[edit]
[-] grid-markup.php
[edit]
[+]
..