當前位置: 首頁>>代碼示例>>PHP>>正文


PHP kama_breadcrumbs函數代碼示例

本文整理匯總了PHP中kama_breadcrumbs函數的典型用法代碼示例。如果您正苦於以下問題:PHP kama_breadcrumbs函數的具體用法?PHP kama_breadcrumbs怎麽用?PHP kama_breadcrumbs使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了kama_breadcrumbs函數的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: kama_breadcrumbs

        <!--start nicdark_container-->
        <div class="nicdark_container nicdark_clearfix pos_relative">

            <div class="nicdark_space100"></div>
            <div class="nicdark_space100"></div>

            <div class="nicdark_space70"></div> <!--for header 1-->

            <div class="grid grid_6">
                <h1 class="white subtitle uppercase">Галерея</h1>
            </div>
            <div class="grid grid_6 nicdark_displaynone_responsive">
                <div class="nicdark_space5"></div>
                <h4 class="white right subtitle"><?php 
if (function_exists('kama_breadcrumbs')) {
    kama_breadcrumbs(' <span class="nicdark_marginleft10 nicdark_marginright10 grey2">|</span> ');
}
?>
</h4>
            </div>

            <div class="nicdark_space40"></div>
            <div class="nicdark_space40"></div>

        </div>
        <!--end nicdark_container-->

    </div>
     
</section>
<!--end section-->
開發者ID:bohdangorovoy,項目名稱:ecocamp,代碼行數:31,代碼來源:archive-gallery.php

示例2: get_header

<?php

get_header();
?>
<section class="content">
			<div class="container">
				<div class="row">
					<div class="col md-12">
					<!-- Хлебные крошки -->
						<div class="breadcrumbs">
							<?php 
if (function_exists('kama_breadcrumbs')) {
    kama_breadcrumbs();
}
?>
						</div>
					</div>
				</div>
				<div class="row">
					<div class="col-md-3">
					<!-- Sidebar -->
						<?php 
wp_nav_menu('menu=Левое меню');
?>
					</div>
					<div class="col-md-9">
						
							<?php 
while (have_posts()) {
    the_post();
    ?>
開發者ID:an10n1,項目名稱:fintegra_wp--test_issue,代碼行數:31,代碼來源:single.php

示例3: get_header

<?php

get_header();
?>


<div class="content">
    <div class="navline">
        <div class="contain">
            <div class="navline__bg"></div>
            <div class="navline__contain">
                <?php 
if (function_exists('kama_breadcrumbs')) {
    kama_breadcrumbs(' &#8594; ');
}
?>
            </div>
        </div>
    </div>
    <div class="contain">
       ghbdtn        
    </div>
</div>


<?php 
get_footer();
開發者ID:Kirbaba,項目名稱:Baron-Almaty,代碼行數:27,代碼來源:category-recipes.php

示例4: get_header

<? get_header()?>
<div class="wrapper">
	<div class="content">
		<div class="contain">
			<? get_sidebar()?>
			<section class="page">
				<?php 
if (function_exists('kama_breadcrumbs')) {
    kama_breadcrumbs(' / ');
}
?>
				 <!-- Имеются ли посты для отображения? -->
				 <div class="categorys">   
            <?php 
if (have_posts()) {
    ?>
                <!-- Цикл вывода постов -->
            <?php 
    while (have_posts()) {
        the_post();
        ?>
               
                                        
                        <a href="<?php 
        the_permalink();
        ?>
" class="toRecipe"><?php 
        the_title();
        ?>
</a>                       
                                
開發者ID:Kirbaba,項目名稱:FemidaGroup,代碼行數:30,代碼來源:category.php

示例5: while

    while (have_posts()) {
        //>************* Breadcrumbs *************
        the_post();
        echo "<h2>" . the_title('', '', false) . "</h2>";
        the_content();
    }
    //while(have_posts()){
}
//if (have_posts()){	//Loop
//wp_reset_postdata();	//Restory original post data
echo "<p>Первый способ:<br> ";
if (function_exists('breadcrumbs')) {
    echo breadcrumbs(' » ');
}
echo "</p>";
echo "Второй способ: ";
if (function_exists('kama_breadcrumbs')) {
    kama_breadcrumbs(' » ');
}
?>
</div>
</div>
<div id=footer>
Somthing about me
</div>
<?php 
wp_footer();
?>
</body>
</html>
開發者ID:viktorr1975,項目名稱:WP-cl1,代碼行數:30,代碼來源:Breadcrumbs.php

示例6: get_re_img_src

<?php

$sep = get_re_img_src('bread-arrow.png');
if (function_exists('kama_breadcrumbs')) {
    kama_breadcrumbs('&nbsp;&nbsp;<img src="' . $sep . '">&nbsp;&nbsp;');
}
開發者ID:WP-Panda,項目名稱:crrepetitor,代碼行數:6,代碼來源:template-breadcrumbs.php


注:本文中的kama_breadcrumbs函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。