복붙노트

[WORDPRESS] 다른 PHP 파일에 액세스 워드 프레스의 기능?

WORDPRESS

다른 PHP 파일에 액세스 워드 프레스의 기능?

해결법


  1. 1.헤더를 포함하여도 시도

    헤더를 포함하여도 시도


  2. 2.http://codex.wordpress.org/Integrating_WordPress_with_Your_Website 참조

    http://codex.wordpress.org/Integrating_WordPress_with_Your_Website 참조

    먼저, 하나를 사용

    <?php  define('WP_USE_THEMES', false); require('./wp-blog-header.php'); ?>
    

    또는

    <?php require('/the/path/to/your/wp-blog-header.php');?>
    

    다음 WP 함수를 호출.

  3. from https://stackoverflow.com/questions/7058957/access-wordpress-functions-in-a-different-php-file by cc-by-sa and MIT license