在Wordpress Penscratch主题

时间:2017-06-15 15:31:01

标签: php wordpress wordpress-theming file-manager

我的网站是www.rosstheexplorer.com。

我使用Wordpress。我使用Penscratch主题。我从未有意识地调整/更改过文件管理器。

我对custom-header.php进行了更改,但该更改导致我无法加载我的网站。

我的webhost(Bluehost)说他们可以恢复文件管理器上的文件,如果我可以告诉他们文件的目录。

我不知道目录是什么。我一直通过Customize访问PHP文件 - >外观 - >编辑。

现在我无法再访问编辑器或信息中心,我的错误导致我被阻止访问我的网站。

知道主题的人能告​​诉我custom-header.php文件的保存位置吗?

Bluehost客户服务顾问早些时候说过

'我可以看到wp-blog-header.php但不是custom-header.php。'

昨晚我对custom-header.php文件进行了更改

代码是

<?php
/**
 *
 * @package Penscratch
 */

/**
 * Setup the WordPress core custom header feature.
 *
 * @uses penscratch_header_style()
 * @uses penscratch_admin_header_style()
 * @uses penscratch_admin_header_image()
 */
function penscratch_custom_header_setup() {
    add_theme_support( 'custom-header', apply_filters( 'penscratch_custom_header_args', array(
        'default-image'          => '',
        'default-text-color'     => '666666',
        'width'                  => 937,
        'height'                 => 300,
        'flex-height'            => true,
        'wp-head-callback'       => 'penscratch_header_style',
        'admin-head-callback'    => 'penscratch_admin_header_style',
        'admin-preview-callback' => 'penscratch_admin_header_image',
    ) ) );
}
add_action( 'after_setup_theme', 'penscratch_custom_header_setup' );

if ( ! function_exists( 'penscratch_header_style' ) ) :
/**
 * Styles the header image and text displayed on the blog
 *
 * @see penscratch_custom_header_setup().
 */
function penscratch_header_style() {
    $header_text_color = get_header_textcolor();

    // If no custom options for text are set, let's bail
    // get_header_textcolor() options: HEADER_TEXTCOLOR is default, hide text (returns 'blank') or any hex value
    if ( HEADER_TEXTCOLOR == $header_text_color ) {
        return;
    }

    // If we get this far, we have custom styles. Let's do this.
    ?>
    <style type="text/css">
    <?php
        // Has the text been hidden?
        if ( 'blank' == $header_text_color ) :
    ?>
        .site-title,
        .site-description {
            position: absolute;
            clip: rect(1px, 1px, 1px, 1px);
        }
    <?php
        // If the user has set a custom color for the text use that
        else :
    ?>
        .site-title a {
            color: #<?php echo $header_text_color; ?>;
        }
    <?php endif; ?>
    </style>
    <?php
}
endif; // penscratch_header_style

if ( ! function_exists( 'penscratch_admin_header_style' ) ) :
/**
 * Styles the header image displayed on the Appearance > Header admin panel.
 *
 * @see penscratch_custom_header_setup().
 */
function penscratch_admin_header_style() {
?>
    <style type="text/css">
        .appearance_page_custom-header #headimg {
            background: white;
            border: none;
            font-family: "Roboto Slab", Georgia, Times, serif;
            font-size: 15px;
            max-width: 1092px;
        }
        #headimg .site-branding-wrapper {
            border-bottom: 3px solid #eeeeee;
            margin: 0 0 27px;
            padding: 0 0 24px;
        }
        #headimg .site-branding-wrapper:before,
        #headimg .site-branding-wrapper:after {
            content: "";
            display: table;
        }
        #headimg .site-branding-wrapper:after {
            clear: both;
        }
        #headimg .site-branding {
            clear: both;
            margin-top: 54px;
            margin-bottom: 14px;
            text-align: center;
        }
        #headimg h1 {
            clear: none;
            display: inline-block;
            font-size: 1.75em;
            font-weight: normal;
            letter-spacing: 1px;
            line-height: 1;
            margin: 0;
        }
        #headimg a {
            text-decoration: none;
        }
        #desc {
            color: #999 !important;
            font-size: 16px;
            font-weight: 300;
            margin: 13px auto;
        }
        #headimg .site-logo {
            max-height: 150px;
            width: auto;
            display: block;
            margin: 0 auto 27px;
        }
        #headimg .custom-header {
            border-radius: 5px;
            display: block;
            margin: 0 auto;
            margin-bottom: 27px;
            max-width: 100%;
            height: auto;
min-height:100px;
        }
    </style>
<?php
}
endif; // penscratch_admin_header_style

if ( ! function_exists( 'penscratch_admin_header_image' ) ) :
/**
 * Custom header image markup displayed on the Appearance > Header admin panel.
 *
 * @see penscratch_custom_header_setup().
 */
function penscratch_admin_header_image() {
    $style = sprintf( ' style="color:#%s;"', get_header_textcolor() );
?>
    <div id="headimg">
        <div class="site-branding-wrapper">
            <div class="site-branding">
                <?php if ( function_exists( 'jetpack_the_site_logo' ) ) jetpack_the_site_logo(); ?>
                <h1 class="displaying-header-text"><a id="name"<?php echo $style; ?> onclick="return false;" href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a></h1>
                <div class="displaying-header-text" id="desc"<?php echo $style; ?>><?php bloginfo( 'description' ); ?></div>
            </div>
        </div>
        <?php if ( get_header_image() ) : ?>
        <img src="<?php header_image(); ?>" alt="" class="custom-header">
        <?php endif; ?>
    </div>
<?php
}
endif; // penscratch_admin_header_image

我改变了

  'width'                  => 937,

  'width'                  = 100%,

我认为这引起了我的大问题。

2 个答案:

答案 0 :(得分:1)

由于您已经进行了更改并且您无法再进入您的网站,因此我有两种解决方案可能对您有用,因为它对我有用。

我遇到了和你一样的问题,我试图更改标题,甚至是functions.php,这导致我失去了对我网站的访问权限。

注意:每次更改源文件时,请确保备份。

方法#1

  • 登录您的主机
  • 从托管服务提供商处获取FTP访问权限
  • 使用FileZilla作为FTP管理员登录主机提供商
  • 您的网站可能位于&#34; www&#34;文件夹
  • 导航到您的主题&gt; wp-content&gt;主题&gt; theme_name打开之前已进行更改的源文件,并在那里添加备份代码。

一旦您更改了之前编辑过的源文件代码(在本例中为custom-header.php),当然如果您确定custom-header.php是问题,那么您将能够登录到您的wordpress帐户。

方法#2

  • 使用我之前提到的FTP客户端FileZilla,下载 wp-content(所有图片)并重新安装wordpress。
  • 重新安装后,将wp-content添加回原始内容 目录并重新创建网站。

答案 1 :(得分:0)

感谢大家的建议。问题现在已经解决了。

我的网站提供商是BlueHost。

我登录BlueHost并找到了CPanel。

在这里,您可以更改您的网站PHP文件。