Creating a custom page on wordpress and adding content to it

后端 未结 1 509
我在风中等你
我在风中等你 2021-01-27 05:39

I want to create a php page on the website (CMS Wordpress), but I do not understand how to incorporate the template files, for example



        
相关标签:
1条回答
  • 2021-01-27 06:11

    You need to include wp-load.php in your script to use any of WP functions:

    <?
    require_once('../../../wp-load.php');
    get_header(); ?>
    

    try that. xD

    0 讨论(0)
提交回复
热议问题