PluginProbe ʕ •ᴥ•ʔ
Pods – Custom Content Types and Fields / 3.1.4.3
Pods – Custom Content Types and Fields v3.1.4.3
2.7.31.4 2.8.23.5 2.9.19.5 3.0.10.5 3.1.4.3 3.2.8.4 3.3.9.2 2.8.23.4 2.9.19.4 3.0.10.4 3.1.4.2 3.2.8.3 3.3.9.1 trunk 1.14.8 2.7.31.3 2.8.23.3 2.9.19.3 3.0.10.3 3.1.4.1 3.2.0 3.2.1 3.2.1.1 3.2.2 3.2.4 3.2.5 3.2.6 3.2.7 3.2.7.1 3.2.8 3.2.8.1 3.2.8.2 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6 3.3.7 3.3.8 3.3.9
pods / ui / front / widgets.php
pods / ui / front Last commit date
display 1 day ago pagination 1 day ago filters.php 1 day ago form.php 1 day ago view.php 1 day ago widgets.php 1 day ago
widgets.php
24 lines
1 <?php
2 // Don't load directly.
3 if ( ! defined( 'ABSPATH' ) ) {
4 die( '-1' );
5 }
6
7 echo $before_widget;
8
9 if ( ! empty( $title ) ) {
10 echo $before_title . $title . $after_title;
11 }
12
13 if ( ! empty( $before_content ) ) {
14 echo $before_content;
15 }
16
17 echo pods_shortcode( $args, ( isset( $content ) ? $content : null ) );
18
19 if ( ! empty( $after_content ) ) {
20 echo $after_content;
21 }
22
23 echo $after_widget;
24