I'm using Redux Framework for Wordpress theme. Then upload logo from redux options panel.
<img src="<?php global $redux_demo; echo '' . $redux_demo['opt-media']['url'];
?>" />
If upload image logo after how to hide wordpress title and description ?
<span class="site-title">
<a href="<?php bloginfo('url'); ?>" title="<?php bloginfo('name'); ?>"><?php bloginfo('name'); ?></a>
</span>
<h4 class="site-desc"><?php bloginfo('description'); ?></h4>
Redux field:
array(
'id' => 'opt-media',
'type' => 'media',
'title' => __( 'Web Fonts', 'redux-framework-demo' ),
'compiler' => 'true',
'mode' => false,
// Can be set to false to allow any media type, or can also be set to any mime type.
'desc' => __( 'Basic media uploader with disabled URL input field.', 'redux-framework-demo' ),
'subtitle' => __( 'Upload any media using the WordPress native uploader', 'redux-framework-demo' ),
'hint' => array(
//'title' => '',
'content' => 'This is a <b>hint</b> tool-tip for the webFonts field.<br/><br/>Add any HTML based text you like here.',
)
),