search
HomeCMS TutorialWordPressHow to output website file path in wordpress
How to output website file path in wordpressJul 27, 2019 am 10:05 AM
wordpresspath

How to output website file path in wordpress

#WordPress can obtain and output website-related file paths through related functions. In WordPress, you can obtain the site path, theme file path, plug-in file path, etc. through related functions.

The specific output path method is as follows:

Site path related functions

##home_url()

Returns the site path, which is equivalent to the "site address (URL)" in background settings->General

$url = home_url();
echo $url;
$url = home_url('/images/');
echo $url;

site_url()

If WordPress is installed in the root directory of the domain name, this function is the same as home_url().

If WordPress is installed in a subdirectory, site_url() returns the actual installation address of WordPress, which is equivalent to the "WordPress address (URL)" in Backstage->Settings->General.

$url = site_url();
echo $url;

admin_url()

Returns the backend address. After passing parameters, you can also return the address of the backend menu

$url = admin_url();
echo $url;

content_url ()

Return to the actual wp-content directory. If it is installed by default and installed in the root directory, it will be as follows

$url = content_url();
echo $url;

includes_url()

Returns the address of the directory wp-includes where the core files of the current WordPress site are stored. You can take a $path as a parameter.

$url = includes_url( '/js/');
echo $url;

wp_upload_dir()

Returns the address of the WordPress upload directory, which is an array containing a series of information related to the upload address.

<php $upload_dir = wp_upload_dir(); >

Provide the following information to you

'path' - the absolute path of the server to the upload directory, usually starting with a backslash (/) 'url' - the complete URL of the upload directory 'subdir' - Subdirectory name, usually a directory address organized in year/month format, such as /2016/05 'basedir' - Absolute server path to the upload directory, excluding subdirectories 'baseurl' - Full URL of the upload directory, excluding subdirectories Directory 'error' - error message.

For example

$upload_dir = wp_upload_dir();echo $upload_dir[&#39;baseurl&#39;];

Theme path related functions

##get_theme_root_uri()

Get the directory URI where the theme is stored

echo get_theme_root_uri();
get_theme_root()

Get the server absolute path of the directory where the theme is stored

echo get_theme_root();


get_theme_roots()

Get the directory name of the theme directory. If your theme directory is /wp-content/themes, then

echo get_theme_roots();// Output: /themes


get_stylesheet_directory()

Get the server absolute path to the currently enabled theme directory.

can be used to include files, for example


get_stylesheet_directory_uri()

Get the URI of the currently enabled theme directory.

Can be used when a theme directory URI is required.

get_stylesheet()

Get the theme directory name of the currently enabled theme. The difference from get_template() is that if a child theme is used, the directory of the child theme is returned. name.

Plug-in path related functions

plugins_url()

Get the URI of the current plug-in directory, for example, a plug-in is located at /wp-content/plugins/ Under myplugin, the main file name of the plug-in in this directory is myplugin.php. Execute the following code in myplugin.php. The result is as follows

echo plugins_url();//Output: https://www. 53431.com/wp-content/pluginsecho plugins_url('',__FILE__);//Output: https://www.53431.com/wp-content/plugins/mypluginecho plugins_url('js/myscript.js',__FILE__) ;//Output: https://www.53431.com/wp-content/plugins/myplugin/js/myscript.js


plugin_dir_url()

Return the directory URI of the current plugin, for example

echo plugin_dir_url(__FILE__);//Output: https://www.53431.com/wp-content/plugins/myplugin/


Note the backslash at the end.

plugin_dir_path()

Returns the server absolute path of the current plug-in directory, for example

echo plugin_dir_path(__FILE__);//Output: /home/ user/public_html/wp-content/plugins/myplugin/


can be used to reference files, such as


##plugin_basename()

Return the name of the plug-in file that calls this function (including the plug-in path)

For example, calling this function in the myplugin.php file under the plug-in myplugin, the result is as follows

echo plugin_basename(__FILE__); //Output: myplugin/myplugin.php

If called in the myplugin/include/test.php file (test.php is referenced to myplugin.php through include), the result is as follows

echo plugin_basename(__FILE__);//Output: myplugin/include/test.php


Url path related constants

There is also a set of used in WordPress The constant defined by define represents the path.

WP_CONTENT_DIR

Absolute path to the server of the wp-content directory.

WP_CONTENT_URL

URI address of the wp-content directory.

WP_PLUGIN_DIR

The absolute path of the server to the plug-in directory.

WP_PLUGIN_URL

The URI address of the plug-in directory.

Recommended: WordPress Tutorial

The above is the detailed content of How to output website file path in wordpress. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
wordpress后台乱码怎么办wordpress后台乱码怎么办Feb 03, 2023 pm 01:48 PM

wordpress后台乱码的解决办法:1、在wordpress的“wp-admin”文件夹下找到“admin.header.php”文件;2、将“charset”属性值设置为“UTF-8”格式即可恢复正常。

如何解决wordpress标签错误问题如何解决wordpress标签错误问题Feb 03, 2023 pm 02:03 PM

wordpress标签错误的解决办法:1、找到并打开wordpress的“wp-includes”目录下的“class-wp.php”文件;2、修改内容为“$pathinfo = isset( $_SERVER['PATH_INFO'] )?mb_convert_encoding($_SERVER['PATH_INFO'],'utf-8','GBK') : '';”即可。

WordPress设置独立的Description和KeywordsWordPress设置独立的Description和KeywordsFeb 21, 2023 am 11:14 AM

你下载的WordPress主题提供的keywords和description这两个meta标签一般都做得很差,或者根本就不提供,这样不利于SEO。本文将指导你如何给主页、分类、页面以及文章页添加单独的Description 和 Keywords。

wordpress乱码怎么办wordpress乱码怎么办Mar 09, 2023 am 09:13 AM

wordpress乱码的解决办法:1、修改“wp-config.php”文件里的“define(’DB_CHARSET’, ‘utf8′);”为“define(’DB_CHARSET’, ”);”;2、把新数据库的编码设置成“latin1_swedish_ci”;3、以uft8的格式导入备份的数据库文件即可。

wordpress进不去怎么办wordpress进不去怎么办Feb 23, 2023 am 09:41 AM

wordpress进不去的解决办法:1、把地址栏“wp-login.php”后面的参数删掉,然后重新输入密码登录;2、登录FTP,下载“pluggable.php”文件,然后找到“ADMIN_COOKIE_PATH”并将它替换为“SITECOOKIEPATH”即可。

wordpress是saas吗wordpress是saas吗Feb 21, 2023 am 10:40 AM

wordpress不是saas。SaaS是一种软件销售模式,它主要针对云端应用软件,而WordPress是一款CMS系统,它主要针对网站构建和管理。虽然WordPress可以作为SaaS提供服务,但它本质上不是一种SaaS应用。

2023年最新WordPress视频教程推荐2023年最新WordPress视频教程推荐Oct 25, 2019 pm 01:12 PM

本次PHP中文网整合了相关的视频教程,中文手册,以及相关的精选文章安利给大家,统统免费!!!通过我们分享的视频,可随时随地免费观看教程视频,也不需要迅雷或者百度网盘下载了。

wordpress是哪一年的wordpress是哪一年的Feb 01, 2023 am 10:26 AM

wordpress是2003年发布的;Matt于2003年5月27日宣布推出第一版WordPress,受到了社区的欢迎,它基于b2 Cafelog并有显著改进;WordPress的第一个版本包括全新的管理界面、模板、XHTML 1.1兼容模板、内容编辑器。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use