~canonical-sysadmins/wordpress/4.8.1

« back to all changes in this revision

Viewing changes to wp-includes/class.wp-styles.php

  • Committer: Barry Price
  • Date: 2016-08-17 04:49:28 UTC
  • mto: This revision was merged to the branch mainline in revision 22.
  • Revision ID: barry.price@canonical.com-20160817044928-viijiwb4tl8jwzmp
new upstream release 4.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
189
189
                $title = isset($obj->extra['title']) ? "title='" . esc_attr( $obj->extra['title'] ) . "'" : '';
190
190
 
191
191
                /**
192
 
                 * Filter the HTML link tag of an enqueued style.
 
192
                 * Filters the HTML link tag of an enqueued style.
193
193
                 *
194
194
                 * @since 2.6.0
195
195
                 * @since 4.3.0 Introduced the `$href` parameter.
313
313
                $r = parent::all_deps( $handles, $recursion, $group );
314
314
                if ( ! $recursion ) {
315
315
                        /**
316
 
                         * Filter the array of enqueued styles before processing for output.
 
316
                         * Filters the array of enqueued styles before processing for output.
317
317
                         *
318
318
                         * @since 2.6.0
319
319
                         *
344
344
                        $src = add_query_arg('ver', $ver, $src);
345
345
 
346
346
                /**
347
 
                 * Filter an enqueued style's fully-qualified URL.
 
347
                 * Filters an enqueued style's fully-qualified URL.
348
348
                 *
349
349
                 * @since 2.6.0
350
350
                 *