PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 15.1
Jetpack – WP Security, Backup, Speed, & Growth v15.1
16.2-beta 12.0.3 12.1.3 12.2.3 12.3.2 12.4.2 12.5.2 12.6.4 12.7.3 12.8.3 12.9.5 13.0.2 13.1.5 13.2.4 13.3.3 13.4.5 13.5.2 13.6.2 13.7.2 13.8.3 13.9.2 14.0.1 14.1.1 14.2.2 14.3.1 All 501 releases
jetpack / modules / shortcodes / archives.php

archives.php in Jetpack – WP Security, Backup, Speed, & Growth 15.1, at modules/shortcodes/archives.php

89 lines 2.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Archives shortcode
4 *
5 * @author bubel & nickmomrik
6 * [archives limit=10]
7 *
8 * @package automattic/jetpack
9 */
10
11 if ( ! defined( 'ABSPATH' ) ) {
12 exit( 0 );
13 }
14
15 add_shortcode( 'archives', 'archives_shortcode' );
16
17 /**
18 * Display Archives shortcode.
19 *
20 * @param array $atts Shortcode attributes.
21 */
22 function archives_shortcode( $atts ) {
23 if ( is_feed() ) {
24 return '[archives]';
25 }
26
27 global $allowedposttags;
28
29 $default_atts = array(
30 'type' => 'postbypost',
31 'limit' => '',
32 'format' => 'html',
33 'showcount' => false,
34 'before' => '',
35 'after' => '',
36 'order' => 'desc',
37 );
38
39 $attr = shortcode_atts( $default_atts, $atts, 'archives' );
40
41 if ( ! in_array( $attr['type'], array( 'yearly', 'monthly', 'daily', 'weekly', 'postbypost' ), true ) ) {
42 $attr['type'] = 'postbypost';
43 }
44
45 if ( ! in_array( $attr['format'], array( 'html', 'option', 'custom' ), true ) ) {
46 $attr['format'] = 'html';
47 }
48
49 $limit = (int) $attr['limit'];
50 // A Limit of 0 makes no sense so revert back to the default.
51 if ( empty( $limit ) ) {
52 $limit = '';
53 }
54
55 $showcount = ( false !== $attr['showcount'] && 'false' !== $attr['showcount'] ) ? true : false;
56 $before = wp_kses( $attr['before'], $allowedposttags );
57 $after = wp_kses( $attr['after'], $allowedposttags );
58
59 // Get the archives.
60 $archives = wp_get_archives(
61 array(
62 'type' => $attr['type'],
63 'limit' => $limit,
64 'format' => $attr['format'],
65 'echo' => false,
66 'show_post_count' => $showcount,
67 'before' => $before,
68 'after' => $after,
69 )
70 );
71
72 if ( 'asc' === $attr['order'] ) {
73 $archives = implode( "\n", array_reverse( explode( "\n", $archives ) ) );
74 }
75
76 // Check to see if there are any archives.
77 if ( empty( $archives ) ) {
78 $archives = '<p>' . __( 'Your blog does not currently have any published posts.', 'jetpack' ) . '</p>';
79 } elseif ( 'option' === $attr['format'] ) {
80 $is_amp = class_exists( 'Jetpack_AMP_Support' ) && Jetpack_AMP_Support::is_amp_request();
81 $change_attribute = $is_amp ? 'on="change:AMP.navigateTo(url=event.value)"' : 'onchange="document.location.href=this.options[this.selectedIndex].value;"';
82 $archives = '<select name="archive-dropdown" ' . $change_attribute . '><option value="' . get_permalink() . '">--</option>' . $archives . '</select>';
83 } elseif ( 'html' === $attr['format'] ) {
84 $archives = '<ul>' . $archives . '</ul>';
85 }
86
87 return $archives;
88 }
89