1

我下载了SMThemes。它有点类似于 wordPress。

但是,当我复制文件时,index.php无法正确执行

<?php 
    global $SMTheme;

    get_header(); 

    get_template_part('theloop');

    get_template_part('navigation');

    get_footer();

?>

我找不到get_header定义的位置。

中没有这样的功能functions.php,也没有includes文件夹。

4

1 回答 1

2

事实上,SMThemes是一个WordPress主题。请参阅链接末尾的评论。

get_header()是在WordPress核心本身而不是在主题文件中定义的,因此您无法在那里找到它。

你可以在wp-installation-root/wp-includes/general-template.php文件 Line 24找到它的定义,它的定义是:

/**
 * Load header template.
 *
 * Includes the header template for a theme or if a name is specified then a
 * specialised header will be included.
 *
 * For the parameter, if the file is called "header-special.php" then specify
 * "special".
 *
 * @uses locate_template()
 * @since 1.5.0
 * @uses do_action() Calls 'get_header' action.
 *
 * @param string $name The name of the specialised header.
 */
function get_header( $name = null ) {
    do_action( 'get_header', $name );

    $templates = array();
    $name = (string) $name;
    if ( '' !== $name )
        $templates[] = "header-{$name}.php";

    $templates[] = 'header.php';

    // Backward compat code will be removed in a future release
    if ('' == locate_template($templates, true))
        load_template( ABSPATH . WPINC . '/theme-compat/header.php');
}

至于您真正的问题,您可以按照@SteAp 的建议尝试一下PHPStorm,它确实非常好,并且您可以轻松解决这类问题(我不为JetBrains工作)。

于 2013-08-31T01:27:48.817 回答