是否可以将wordpress标题包含在位于文件夹中的php文件中:例如:wp-content / uploads / custom.php?
答案 0 :(得分:1)
您可以使用此文档:Integrating WordPress with your website
在您的情况下,您可以创建文件content.php并添加此代码,我只是在我的网站上尝试过它并且它有效:
<?php
$path = $_SERVER['DOCUMENT_ROOT']; // Gets the root directory URL
$path .= '/domain_dir'; // Appends your WordPress installation URL
require( dirname($path) . '/wp-blog-header.php'); // Require this to execute get_header();
get_header(); // Executes header.php
?>