Custom Logo URL | Help me print the URL of the custom logo I inserted into my theme
Use wp_get_attachment_image_src to get the image properties and URL: $logo = get_theme_mod( ‘custom_logo’ ); $image = wp_get_attachment_image_src( $logo , ‘full’ ); $image_url = $image[0]; $image_width = $image[1]; $image_height = $image[2]; Edit: Adding more information based on your comment. The URL it points to is simply made with home_url: esc_url( home_url( “https://wordpress.stackexchange.com/” ) ); Another thing … Read more