| Server IP : 104.21.25.182 / Your IP : 216.73.216.140 Web Server : Apache System : Linux server.rehabsharif.com 5.14.0-611.54.3.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:31:24 EDT 2026 x86_64 User : nobi37te ( 1003) PHP Version : 8.2.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/nobi37te/public_html/wp-content/themes/buddyboss-theme/template-parts/ |
Upload File : |
<?php
/**
* Template part for displaying quote content
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package BuddyBoss_Theme
*/
?>
<?php
global $post;
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php if ( !is_single() ) { ?>
<div class="post-inner-wrap">
<?php } ?>
<div class="entry-content-wrap">
<?php
if ( !is_singular() ) {
echo '<span class="post-format-icon white" aria-label="' . esc_attr__( 'Quote', 'buddyboss-theme' ) . '"><i class="bb-icon-l bb-icon-quote-left"></i></span>';
}
?>
<header class="entry-header">
<?php
if ( is_singular() ) :
the_title( '<h1 class="entry-title">', '</h1>' );
endif;
?>
</header><!-- .entry-header -->
<div class="entry-content">
<?php
if ( is_singular() ) {
the_content( sprintf(
wp_kses(
/* translators: %s: Name of current post. Only visible to screen readers */
__( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'buddyboss-theme' ), array(
'span' => array(
'class' => array(),
),
)
), get_the_title()
) );
} else {
if ( function_exists( 'the_exceprt_quote' ) ) {
the_exceprt_quote();
} else {
the_excerpt();
}
}
?>
</div><!-- .entry-content -->
</div>
<?php if ( !is_single() ) { ?>
</div><!--Close '.post-inner-wrap'-->
<?php } ?>
</article><!-- #post-<?php the_ID(); ?> -->
<?php
//get_template_part( 'template-parts/author-box' );