content_url( string $path = '' )
Retrieves the URL to the content directory.
描述
参数
- $path
-
(string)
(Optional)
Path relative to the content URL.Default value: ”
返回值
(string) Content URL link with optional path appended.
源代码
File: wp-includes/link-template.php
function content_url( $path = '' ) {
$url = set_url_scheme( WP_CONTENT_URL );
if ( $path && is_string( $path ) )
$url .= '/' . ltrim($path, '/');
/**
* Filters the URL to the content directory.
*
* @since 2.8.0
*
* @param string $url The complete URL to the content directory including scheme and path.
* @param string $path Path relative to the URL to the content directory. Blank string
* if no path is specified.
*/
return apply_filters( 'content_url', $url, $path);
}
更新日志
Version | 描述 |
---|---|
2.6.0 | Introduced. |
相关函数
Uses
-
wp-includes/link-template.php:
set_url_scheme() -
wp-includes/link-template.php:
content_url -
wp-includes/plugin.php:
apply_filters()
Used By
-
wp-includes/theme.php:
get_theme_root_uri() -
wp-includes/class-wp-editor.php:
_WP_Editors::editor_settings()
User Contributed Notes
-
Skip to note content
You must log in to vote on the helpfulness of this noteVote results for this note: 0You must log in to vote on the helpfulness of this note
Contributed by
Codex
Example
echo content_url();
Output: http://www.example.com/wp-content (without a trailing /)
你可能对这些文章感兴趣:
- wordpress函数edit_user()用法示例
- wordpress函数email_exists()用法示例
- wordpress函数endElement()用法示例
- wordpress函数edit_term_link()用法示例
- wordpress函数edit_post_link()用法示例
- wordpress函数edit_tag_link()用法示例
- wordpress函数edit_link()用法示例
- wordpress函数edit_post()用法示例
- wordpress函数edit_comment_link()用法示例
- wordpress函数edit_form_image_editor()用法示例
- wordpress函数edit_bookmark_link()用法示例
- wordpress函数edit_comment()用法示例
- wordpress函数drop_index()用法示例
- wordpress函数dynamic_sidebar()用法示例
如有疑问,请前往问答中心反馈!
反馈