PluginProbe
Post Grid Gutenberg Blocks – PostX / 5.0.30
Post Grid Gutenberg Blocks – PostX v5.0.30
5.0.39 5.0.38 5.0.37 5.0.36 5.0.35 5.0.34 5.0.33 5.0.32 5.0.31 5.0.30 5.0.29 5.0.28 5.0.27 5.0.26 5.0.25 5.0.23 5.0.24 5.0.22 5.0.21 5.0.20 5.0.19 5.0.18 5.0.17 2.1.1 2.1.2 All 237 releases
ultimate-post / addons / beaver_builder / includes / frontend.php

frontend.php in Post Grid Gutenberg Blocks – PostX 5.0.30, at addons/beaver_builder/includes/frontend.php

24 lines 842 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php $id = $settings->template;//phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited ?>
2 <div class="ultp-shortcode" data-postid="<?php echo esc_attr( $id ); ?>">
3 <?php
4 if ( $id ) {
5 $args = array(
6 'p' => $id,
7 'post_type' => 'ultp_templates',
8 );
9 $the_query = new \WP_Query( $args );
10 if ( $the_query->have_posts() ) {
11 while ( $the_query->have_posts() ) {
12 $the_query->the_post();
13 the_content();
14 }
15 wp_reset_postdata();
16 }
17 } elseif ( isset( $_GET['fl_builder'] ) ) {
18 //phpcs:ignore
19 echo '<p style="text-align:center;">' . sprintf( esc_html__( 'Pick a Template from your saved ones. Or create a template from: %s.', 'ultimate-post' ) . ' ', '<strong><i>' . esc_html__( 'Dashboard > PostX > Saved Templates', 'ultimate-post' ) . '</i></strong>' ) . '</p>'; //phpcs:ignore
20
21 }
22 ?>
23 </div>
24