简体   繁体   中英

Wordpress include php file

I am trying to create a php website on WordPress for the first time.

When I create a page, it creates a permalink which is of the form http://localhost/?p=123 . I don't know if there is a corresponding file.

在此输入图像描述

I've installed insert-php plugin to read php code. It works fine on a static page. But how do I include another php file? I want to include my_utilities which contains all the back-end functions, in login . It has a permalink 'http://localhost/?page_id=45' .

What to do?

include 'http://localhost/?page_id=45' doesn't work.

Pages you define in WordPress's backend are pages mostly setup for your users to view / read. They, by default, have this URL structure of http://localhost/?p=123 (though this can be changed, but that's a whole different lesson).

To include a script file, upload the file to your folder structure where you have your website then refer to it in your include statement as follows:

include('path/to/folder/my_script.php');

EDIT : You may also want to have a look into WordPress Page Templates :

Pages are one of WordPress's built-in Post Types. You'll probably want most of your website Pages to look about the same. Sometimes, though, you may need a specific Page, or a group of Pages, to display or behave differently. This is easily accomplished with Page Templates.

For exapmle your wordpress file is at

/var/www/html/wp-content/myphpfiles/test.php

To include the test.php file in your wordpress page you have to following.

[insert_php] include('wp-content/myphpfiles/test.php'); [/insert_php]

Thats it.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM