本文整理汇总了PHP中porto_header_socials函数的典型用法代码示例。如果您正苦于以下问题:PHP porto_header_socials函数的具体用法?PHP porto_header_socials怎么用?PHP porto_header_socials使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了porto_header_socials函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: force_balance_tags
echo $top_nav;
?>
</div>
<div class="header-right">
<div class="side-bottom">
<?php
// show contact info and mini cart
$contact_info = $porto_settings['header-contact-info'];
if ($contact_info) {
echo '<div class="header-contact">' . force_balance_tags($contact_info) . '</div>';
}
?>
<?php
// show social links
echo porto_header_socials();
?>
<?php
// show copyright
$copyright = $porto_settings['header-copyright'];
if ($copyright) {
echo '<div class="header-copyright">' . force_balance_tags($copyright) . '</div>';
}
?>
</div>
</div>
</div>
</div>
</header>
示例2: force_balance_tags
// show welcome message
if ($porto_settings['welcome-msg']) {
echo '<span class="welcome-msg">' . force_balance_tags($porto_settings['welcome-msg']) . '</span>';
}
?>
</div>
<div class="header-right">
<?php
// show top navigation
$top_nav = porto_top_navigation();
echo $top_nav;
?>
<?php
$minicart = porto_minicart();
$searchform = porto_search_form();
$header_social = porto_header_socials();
if ($minicart || $searchform || $header_social) {
echo '<div class="block-inline">';
}
// show search form
echo $searchform;
// show social links and welcome message
echo $header_social;
// show minicart
echo $minicart;
if ($minicart || $searchform || $header_social) {
echo '</div>';
}
?>
</div>
</div>