PluginProbe
Getwid – Gutenberg Blocks / 2.0.10
Getwid – Gutenberg Blocks v2.0.10
3.0.2 3.0.1 3.0.0 2.1.0 2.1.1 2.1.2 2.1.3 2.2.0 trunk 1.8.7 1.9.1 2.0.10 2.0.11 2.0.12 2.0.13 2.0.14 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9
getwid / includes / templates / post-slider / post.php

post.php in Getwid – Gutenberg Blocks 2.0.10, at includes/templates/post-slider/post.php

28 lines 896 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * The template for displaying all single posts in Post Slider block
4 */
5
6 $base_class = $extra_attr['block_name'];
7
8 ?>
9
10 <div class="<?php echo esc_attr( $base_class . '__post' ); ?> ">
11 <?php if ( has_post_thumbnail() ) : ?>
12 <div class="<?php echo esc_attr( $base_class . '__post-thumbnail' ); ?>">
13 <?php the_post_thumbnail();?>
14 </div>
15 <?php endif; ?>
16 <div class="<?php echo esc_attr( $base_class . '__post-overlay' ); ?> "></div>
17 <div class="<?php echo esc_attr( $base_class . '__post-content-wrapper' ); ?>">
18 <?php
19 the_title(
20 '<h3 class="' . esc_attr( $base_class ) . '__post-title"><a href="' . esc_url( get_permalink() ) . '">',
21 '</a></h3>'
22 ); ?>
23 <div class="<?php echo esc_attr( $base_class . '__post-excerpt' ); ?>"><?php
24 the_excerpt();
25 ?></div>
26 </div>
27 </div>
28