display
2 years ago
pagination
2 years ago
filters.php
2 years ago
form.php
2 years ago
view.php
2 years ago
widgets.php
2 years 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 |