如何在wordpress中更改链接的徽标?

时间:2017-07-04 10:54:14

标签: php css wordpress

我想在wordpress中更改徽标标题中的链接,但我不知道如何更改它,我尝试更改 header.php ,不幸的是,&# 39;不工作

的header.php

<?php
<head>
    <meta charset="<?php bloginfo('charset'); ?>" />
    <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
    <?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
    <div id="body-content-wrapper">

        <header id="header-main-fixed">

            <div id="header-content-wrapper">

                <div id="header-top">
                    <div id="weglot_here"></div>
                    <? //php fart_display_social_sites(); ?>
                </div>

                    <div class="clear"></div>

                <div id="header-logo">
                    <?php fart_show_website_logo_image_and_title(); ?>
                </div><!-- #header-logo -->

                <nav id="navmain">

                    <?php wp_nav_menu( array( 'theme_location' => 'primary',
                                              'fallback_cb'    => 'wp_page_menu',

                                              ) ); ?>
                </nav><!-- #navmain -->



                <div class="clear">

                </div><!-- .clear -->

            </div><!-- #header-content-wrapper -->

        </header><!-- #header-main-fixed -->

        <div id="header-spacer">
            &nbsp;
        </div><!-- #header-spacer -->

任何人都可以帮助我吗?

1 个答案:

答案 0 :(得分:1)

functions.php中找到 fart_show_website_logo_image_and_title()功能,并将下面一行中的href属性更改为您想要的那个:

    echo '<a href="' . esc_url( home_url('/') ) . '" title="' . esc_attr( get_bloginfo('name') ) . '">';