Php 标志不显示

Php 标志不显示,php,wordpress,wordpress-theming,graphical-logo,Php,Wordpress,Wordpress Theming,Graphical Logo,不久前,我为我的博客安装了一个主题。它真的很好,几乎有我想要的所有功能,但现在我知道它有一个小错误,没有地方上传网站徽标。我已经尽了最大努力查看了框架和子主题,但找不到任何上传徽标图像的选项(它确实有一个选项,询问用户是否要显示文本徽标或图像徽标) 主题说明 主题分为框架和子主题两部分 header.php 请与Genesis框架作者联系。如果它是一个主题框架,我会认为它们是一个主题选项(可能在wp admin中的“外观”下)来上传徽标图像。是的,它们是一个在标题中选择主题或文本的选项,但

不久前,我为我的博客安装了一个主题。它真的很好,几乎有我想要的所有功能,但现在我知道它有一个小错误,没有地方上传网站徽标。我已经尽了最大努力查看了框架和子主题,但找不到任何上传徽标图像的选项(它确实有一个选项,询问用户是否要显示文本徽标或图像徽标)

主题说明 主题分为框架和子主题两部分


header.php




请与Genesis框架作者联系。如果它是一个主题框架,我会认为它们是一个主题选项(可能在wp admin中的“外观”下)来上传徽标图像。

是的,它们是一个在标题中选择主题或文本的选项,但没有上传徽标图像的区域。我已经检查了很多次。那么,如果选择“图像”作为徽标类型(文本或图像),会显示什么图像?没有上载图像的选项。如果我选择图像的标志选项,然后它会显示空白区域(没有图像显示)。我甚至尝试使用FileZilla上传图像,但仍然没有帮助。你有网站的URL吗?请查看“”链接。第7章详细介绍了标题/徽标,因此请根据您当前的设置进行操作。“没有上传站点徽标的地方”——这有帮助吗?
<?php
/**
 * WARNING: This file is part of the core Genesis framework. DO NOT edit
 * this file under any circumstances. Please do all modifications
 * in the form of a child theme.
 *
 * Handles the header structure.
 *
 * @package Genesis
 */
do_action( 'genesis_doctype' );

do_action( 'genesis_title' );

do_action( 'genesis_meta' );

wp_head(); /** we need this for plugins **/
?>
</head>
<body <?php body_class(); ?>>
<?php
do_action( 'genesis_before' );
?>
<div id="wrap">
<?php
do_action( 'genesis_before_header' );
do_action( 'genesis_header' );
do_action( 'genesis_after_header' );

echo '<div id="inner">';
genesis_structural_wrap( 'inner' );
<?php
/**
 * WARNING: This file is part of the core Genesis framework. DO NOT edit
 * this file under any circumstances. Please do all modifications
 * in the form of a child theme.
 *
 * This file calls the init.php file, but only
 * if the child theme hasn't called it first.
 *
 * This method allows the child theme to load
 * the framework so it can use the framework
 * components immediately.
 *
 * @package Genesis
 */
require_once( dirname( __FILE__ ) . '/lib/init.php' );