|
@@ 870-871 (lines=2) @@
|
| 867 |
|
|
| 868 |
|
ob_start(); |
| 869 |
|
|
| 870 |
|
if ( ! $is_singular && false !== $tags[ 'filters' ] && 'before' == $tags[ 'filters_location' ] ) |
| 871 |
|
echo $pod->filters( $tags[ 'filters' ], $tags[ 'filters_label' ] ); |
| 872 |
|
|
| 873 |
|
if ( ! $is_singular && 0 < $found && true === $tags[ 'pagination' ] && in_array( $tags[ 'pagination_location' ], array( 'before', 'both' ) ) ) |
| 874 |
|
echo $pod->pagination( $tags[ 'pagination_label' ] ); |
|
@@ 881-882 (lines=2) @@
|
| 878 |
|
if ( ! $is_singular && 0 < $found && true === $tags[ 'pagination' ] && in_array( $tags[ 'pagination_location' ], array( 'after', 'both' ) ) ) |
| 879 |
|
echo $pod->pagination( $tags[ 'pagination_label' ] ); |
| 880 |
|
|
| 881 |
|
if ( ! $is_singular && false !== $tags[ 'filters' ] && 'after' == $tags[ 'filters_location' ] ) |
| 882 |
|
echo $pod->filters( $tags[ 'filters' ], $tags[ 'filters_label' ] ); |
| 883 |
|
|
| 884 |
|
$return = ob_get_clean(); |
| 885 |
|
|