PHP is an open-source, server-side scripting and programming language that's primarily used for web development. The bulk of the core WordPress software is written in PHP, which makes PHP a very important language for the WordPress community.
You don't need to interact with the API or use a plugin.
First, duplicate post.php
or page.php
in your theme folder (under /wp-content/themes/themename/
).
Rename the new file as templatename.php
(where templatename is what you want to call your new template). To add your new template to the list of available templates, enter the following at the top of the new file:
<?php
/*
Template Name: Name of Template
*/
?>
You can modify this file (using PHP) to include other files or whatever you need.
Then create a new page in your WordPress blog, and in the page editing screen you'll see a Template dropdown in the Attributes widget to the right. Select your new template and publish the page.
Your new page will use the PHP code defined in templatename.php
Source: Creating Custom Page Templates for Global Use
If you wanted to create your own .php file and interact with WordPress without 404 headers and keeping your current permalink structure there is no need for a template file for that one page.
I found that this approach works best, in your .php file:
<?php
require_once(dirname(__FILE__) . '/wp-config.php');
$wp->init();
$wp->parse_request();
$wp->query_posts();
$wp->register_globals();
$wp->send_headers();
// Your WordPress functions here...
echo site_url();
?>
Then you can simply perform any WordPress functions after this. Also, this assumes that your .php file is within the root of your WordPress site where your wp-config.php
file is located.
This, to me, is a priceless discovery as I was using require_once(dirname(__FILE__) . '/wp-blog-header.php');
for the longest time as WordPress even tells you that this is the approach that you should use to integrate WordPress functions, except, it causes 404 headers, which is weird that they would want you to use this approach. Integrating WordPress with Your Website
I know many people have answered this question, and it already has an accepted answer, but here is a nice approach for a .php file within the root of your WordPress site (or technically anywhere you want in your site), that you can browse to and load without 404 headers!
wp-blog-header.php
without 404 headers, but this requires that you add in the headers manually. Something like this will work in the root of your WordPress installation:
<?php
require_once(dirname(__FILE__) . '/wp-blog-header.php');
header("HTTP/1.1 200 OK");
header("Status: 200 All rosy");
// Your WordPress functions here...
echo site_url();
?>
Just to update you all on this, a little less code needed for this approach, but it's up to you on which one you use.
If you're like me, sometimes you want to be able to reference WordPress functions in a page which does not exist in the CMS. This way, it remains backend-specific and cannot be accidentally deleted by the client.
This is actually simple to do just by including the wp-blog-header.php
file using a PHP require()
.
Here's an example that uses a query string to generate Facebook Open Graph (OG) data for any post.
Take the example of a link like http://example.com/yourfilename.php?1
where 1
is the ID of a post we want to generate OG data for:
Now in the contents of yourfilename.php
which, for our convenience, is located in the root WordPress directory:
<?php
require( dirname( __FILE__ ) . '/wp-blog-header.php' );
$uri = $_SERVER['REQUEST_URI'];
$pieces = explode("?", $uri);
$post_id = intval( $pieces[1] );
// og:title
$title = get_the_title($post_id);
// og:description
$post = get_post($post_id);
$descr = $post->post_excerpt;
// og:image
$img_data_array = get_attached_media('image', $post_id);
$img_src = null;
$img_count = 0;
foreach ( $img_data_array as $img_data ) {
if ( $img_count > 0 ) {
break;
} else {
++$img_count;
$img_src = $img_data->guid;
}
} // end og:image
?>
<!DOCTYPE HTML>
<html>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=yes" />
<meta property="og:title" content="<?php echo $title; ?>" />
<meta property="og:description" content="<?php echo $descr; ?>" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="website" />
<meta property="og:url" content="<?php echo site_url().'/your_redirect_path'.$post_id; ?>" />
<meta property="og:image" content="<?php echo $img_src; ?>" />
<meta property="og:site_name" content="Your Title" />
</html>
There you have it: generated sharing models for any post using the post's actual image, excerpt and title!
We could have created a special template and edited the permalink structure to do this, but since it's only needed for one page and because we don't want the client to delete it from within the CMS, this seemed like the cleaner option.
EDIT 2017: Please note that this approach is now deprecated
For WordPress installations from 2016+ please see How can I add a PHP page to WordPress? for extra parameters to include before outputting your page data to the browser.
Creating the template page is the correct answer. For this, just add this into the page you created inside the theme folder:
<?php
/*
Template Name: mytemplate
*/
?>
For running this code, you need to select "mytemplate" as the template of the page from the back end.
Please see this link for getting the correct details https://developer.wordpress.org/themes/template-files-section/page-template-files/.
Any answer did not cover if you need to add a PHP page outside of the WordPress Theme. This is the way.
You need to include wp-load.php.
<?php require_once('wp-load.php'); ?>
Then you can use any WordPress function on that page.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With