Szia @szecsenke!
Mi is magyarok vagyunk a Smart Slider 3-nál, talán így k?nnyebb lesz beszélni! ??
Megnéztem a témád kódját és ez a fálj készíti a header rész html kódját:
wp-content\themes\blossom-feminine\inc\template-functions.php
a function blossom_feminine_header(){…} kód. Ezt a “Szécsénke” logót szeretnéd kicserélni? Az itt készül, a 87. sortól:
<div class="header-m site-branding"<?php echo $bg; ?>>
<div class="container" itemscope itemtype="https://schema.org/Organization">
<?php
if (function_exists('has_custom_logo') && has_custom_logo()) {
the_custom_logo();
} ?>
<h1 class="site-title" itemprop="name"><a href="<?php echo esc_url(home_url('/')); ?>" rel="home"
itemprop="url"><?php bloginfo('name'); ?></a></h1>
<?php
$description = get_bloginfo('description', 'display');
if ($description || is_customize_preview()) { ?>
<p class="site-description" itemprop="description"><?php echo esc_html($description); ?></p>
<?php
}
?>
</div>
</div><!-- .header-m -->
szóval azt az egész rész kit?r?lhetnéd és odatehetnéd a shortcode PHP kódunkat:
<?php
echo do_shortcode('[smartslider3 slider=1]');
?>
-
This reply was modified 6 years, 5 months ago by stephencottontail. Reason: removed email