]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-content/themes/twentyfourteen/functions.php
WordPress 4.2
[autoinstalls/wordpress.git] / wp-content / themes / twentyfourteen / functions.php
index 2e66b2e23a1869dc5d978c2f05260564154957d0..5bf5ce03b9edac51147f71553c3720d18087975f 100644 (file)
  * functions.php file. The child theme's functions.php file is included before
  * the parent theme's file, so the child theme functions would be used.
  *
- * @link http://codex.wordpress.org/Theme_Development
- * @link http://codex.wordpress.org/Child_Themes
+ * @link https://codex.wordpress.org/Theme_Development
+ * @link https://codex.wordpress.org/Child_Themes
  *
  * Functions that are not pluggable (not wrapped in function_exists()) are
  * instead attached to a filter or action hook.
  *
  * For more information on hooks, actions, and filters,
- * @link http://codex.wordpress.org/Plugin_API
+ * @link https://codex.wordpress.org/Plugin_API
  *
  * @package WordPress
  * @subpackage Twenty_Fourteen
@@ -94,7 +94,7 @@ function twentyfourteen_setup() {
 
        /*
         * Enable support for Post Formats.
-        * See http://codex.wordpress.org/Post_Formats
+        * See https://codex.wordpress.org/Post_Formats
         */
        add_theme_support( 'post-formats', array(
                'aside', 'image', 'video', 'audio', 'quote', 'link', 'gallery',
@@ -260,7 +260,7 @@ function twentyfourteen_scripts() {
                ) );
        }
 
-       wp_enqueue_script( 'twentyfourteen-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20140616', true );
+       wp_enqueue_script( 'twentyfourteen-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20150315', true );
 }
 add_action( 'wp_enqueue_scripts', 'twentyfourteen_scripts' );
 
@@ -330,7 +330,7 @@ function twentyfourteen_the_attached_image() {
 
                // or get the URL of the first image attachment.
                else {
-                       $next_attachment_url = get_attachment_link( array_shift( $attachment_ids ) );
+                       $next_attachment_url = get_attachment_link( reset( $attachment_ids ) );
                }
        }