gpt4 book ai didi

php - 是否有一个 Wordpress php 函数可以只返回自定义 Logo 图像的 URL(而不是完整的图像标签)?

转载 作者:行者123 更新时间:2023-12-05 09:11:23 26 4
gpt4 key购买 nike

我正在尝试编写一个小型自定义 wordpress 主题。所以我重写了 wordpress 的 twentytwenty 主题。

需要说明的是,我正在谈论 PHP 并覆盖 home.php,我想在其中创建一些自定义 html header 。

我正在尝试使用 wordpress 定制器获取 Logo 的 url(我(或用户,可以更改))。

我做的是:

<img src="<?php echo (get_custom_logo()) ? get_custom_logo() : 'somefallback_url'; ?>" >

发生的事情是:

get_custom_logo() function is returning an Image which is normal, I can't find the function that should return the URL in the codex. An error is happening i have an image inside another one.

所以基本上我想要的是:

A PHP function that returns just the URL not the full Image tag.

最佳答案

codex为你揭晓

function get_custom_logo_url()
{
$custom_logo_id = get_theme_mod( 'custom_logo' );
$image = wp_get_attachment_image_src( $custom_logo_id , 'full' );
return $image[0];
}

关于php - 是否有一个 Wordpress php 函数可以只返回自定义 Logo 图像的 URL(而不是完整的图像标签)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60158309/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com