我正在尝试将我的Wordpress徽标链接更改为一些自定义链接。
假设我要设置的新链接是http://newlink.html
我正在使用带有二十五个主题的wordpress 4.5.3。 (所以我在Stack上的最后一个答案已经过时,因为4.5中的自定义徽标已更改。)
我进入header.php
并找到了:
twentyfifteen_the_custom_logo();
if ( is_front_page() && is_home() ) : ?>
<h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>"
rel="home"><?php bloginfo( 'name' ); ?></a></h1>
<?php else : ?>
<p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>"
rel="home"><?php bloginfo( 'name' ); ?></a></p>
<?php endif;
因此,如果我正确理解,我正在为我的自定义徽标调用函数twentyfifteen_the_custom_logo();
,接下来的两个链接不会影响我,因为它们如果我仍在使用文字标识,我不知道。
然后我去寻找这个twentyfifteen_the_custom_logo();
并找到了一些我可以改变的参数:
function.php
:
/*
* Enable support for custom logo.
*
* @since Twenty Fifteen 1.5
*/
add_theme_support( 'custom-logo', array(
'height' => 248,
'width' => 248,
'flex-height' => true,
) );
所以我想添加类似'src' => http://newlink.html,
的内容,但documentation看起来不像接受此参数。
我继续寻找功能并前往template-tags.php
找到:
if ( ! function_exists( 'twentyfifteen_the_custom_logo' ) ) :
/**
* Displays the optional custom logo.
*
* Does nothing if the custom logo is not available.
*
* @since Twenty Fifteen 1.5
*/
function twentyfifteen_the_custom_logo() {
if ( function_exists( 'the_custom_logo' ) ) {
the_custom_logo();
}
}
endif;
此函数调用我在任何地方都找不到的the_custom_logo();
。
我可能错过了一些东西,或者我看起来不对,如果你能帮我找到如何将自定义徽标链接更改为自定义网址,那就太棒了:)
谢谢!
答案 0 :(得分:7)