Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
87.23% covered (warning)
87.23%
41 / 47
0.00% covered (danger)
0.00%
0 / 1
CRAP
n/a
0 / 0
archives_shortcode
93.18% covered (success)
93.18%
41 / 44
0.00% covered (danger)
0.00%
0 / 1
13.05
1<?php
2/**
3 * Archives shortcode
4 *
5 * @author bubel & nickmomrik
6 * [archives limit=10]
7 *
8 * @package automattic/jetpack
9 */
10
11if ( ! defined( 'ABSPATH' ) ) {
12    exit( 0 );
13}
14
15add_shortcode( 'archives', 'archives_shortcode' );
16
17/**
18 * Display Archives shortcode.
19 *
20 * @param array $atts Shortcode attributes.
21 */
22function 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}