diff --git a/wp-includes/link-template.php b/wp-includes/link-template.php
index 739d6bb..12d74a1 100644
|
a
|
b
|
function content_url($path = '') { |
| 2626 | 2626 | } |
| 2627 | 2627 | |
| 2628 | 2628 | /** |
| 2629 | | * Retrieve the url to the plugins directory or to a specific file within that directory. |
| 2630 | | * You can hardcode the plugin slug in $path or pass __FILE__ as a second argument to get the correct folder name. |
| | 2629 | * Retrieve the url to the plugins directory, or a specific directory under plugins |
| | 2630 | * or mu-plugins. |
| | 2631 | * |
| | 2632 | * When a $plugin is supplied, the directory containing the referenced file will be |
| | 2633 | * appended to the base URL. |
| | 2634 | * |
| | 2635 | * When a $path is supplied, it will be appended to the URL. |
| 2631 | 2636 | * |
| 2632 | 2637 | * @since 2.6.0 |
| 2633 | 2638 | * |
| 2634 | | * @param string $path Optional. Path relative to the plugins url. |
| 2635 | | * @param string $plugin Optional. The plugin file that you want to be relative to - i.e. pass in __FILE__ |
| 2636 | | * @return string Plugins url link with optional path appended. |
| | 2639 | * @param string $path Optional. Path appended to the URL. |
| | 2640 | * @param string $plugin Optional. The plugin path that the URL will be relative to. |
| | 2641 | * Typically this is done by passing `__FILE__` |
| | 2642 | * @return string Plugins url link with optional path appended. |
| 2637 | 2643 | */ |
| 2638 | 2644 | function plugins_url($path = '', $plugin = '') { |
| 2639 | 2645 | |