当前位置: 首页>>代码示例>>PHP>>正文


PHP appthemes_before_post_title函数代码示例

本文整理汇总了PHP中appthemes_before_post_title函数的典型用法代码示例。如果您正苦于以下问题:PHP appthemes_before_post_title函数的具体用法?PHP appthemes_before_post_title怎么用?PHP appthemes_before_post_title使用的例子?那么, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了appthemes_before_post_title函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: _e

                    <dt><?php 
        _e('Type', 'appthemes');
        ?>
</dt>
                    <dd class="type"><?php 
        jr_get_custom_taxonomy($post->ID, 'job_type', 'jtype');
        ?>
</dd>

                    <dt><?php 
        _e('Job', 'appthemes');
        ?>
</dt>
					
					<?php 
        appthemes_before_post_title('job_listing');
        ?>

                    <dd class="title">
						<strong><a href="<?php 
        the_permalink();
        ?>
"><?php 
        the_title();
        ?>
</a></strong>
						<?php 
        jr_job_author();
        ?>
                    </dd>
开发者ID:besimhu,项目名称:legacy,代码行数:30,代码来源:loop-job.php

示例2: get_option

                </div>
        
                <div class="<?php 
            if (get_option('cp_ad_images') == 'yes') {
                echo 'post-right';
            } else {
                echo 'post-right-no-img';
            }
            ?>
 <?php 
            echo get_option('cp_ad_right_class');
            ?>
">
                
                    <?php 
            appthemes_before_post_title();
            ?>
        
                    <h3><a href="<?php 
            the_permalink();
            ?>
"><?php 
            if (mb_strlen(get_the_title()) >= 67) {
                echo mb_substr(get_the_title(), 0, 67) . '...';
            } else {
                the_title();
            }
            ?>
</a></h3>
                    
                    <div class="clr"></div>
开发者ID:joaosigno,项目名称:dazake-job,代码行数:31,代码来源:loop-ad_listing.php

示例3: the_post

        the_post();
        ?>
		
			<?php 
        appthemes_before_post('resume');
        ?>

            <li class="resume" title="<?php 
        echo htmlspecialchars(jr_seeker_prefs(get_the_author_meta('ID')), ENT_QUOTES);
        ?>
">

                <dl>

					<?php 
        appthemes_before_post_title('resume');
        ?>
					
                    <dt><?php 
        _e('Resume title', 'appthemes');
        ?>
</dt>
					
                    <dd class="title">
					
						<strong><a href="<?php 
        the_permalink();
        ?>
"><?php 
        the_title();
        ?>
开发者ID:besimhu,项目名称:legacy,代码行数:31,代码来源:loop-resume.php

示例4: cp_ad_featured_thumbnail

<li>

	<div class="slide-item">
		<span class="feat_left">

			<?php 
if ($cp_options->ad_images) {
    cp_ad_featured_thumbnail();
}
?>

		</span>

		<?php 
appthemes_before_post_title('featured');
?>

		<p><a href="<?php 
the_permalink();
?>
"><?php 
if (mb_strlen(get_the_title()) >= $cp_options->featured_trim) {
    echo mb_substr(get_the_title(), 0, $cp_options->featured_trim) . '...';
} else {
    the_title();
}
?>
</a></p>

		<span class="price_sm muted"><?php 
开发者ID:kalushta,项目名称:darom,代码行数:30,代码来源:content-slider-ad_listing.php

示例5: the_permalink

												
												<a href="http://www.facebook.com/share.php?u=<?php 
            the_permalink();
            ?>
&title=<?php 
            the_title();
            ?>
" class="facebook-share-button">
													<i class="fa fa-facebook"></i>
												</a>
												
												<span>share this</span>
											</div>
								
											<?php 
            appthemes_before_post_title(IDEAX_PTYPE);
            ?>
								
											<?php 
            if (is_singular(IDEAX_PTYPE)) {
                ?>
												<h2 itemprop="name"><strong>Πρόταση:</strong> <?php 
                the_title();
                ?>
</h2>
											<?php 
            } else {
                ?>
												<h2 itemprop="name"><a href="<?php 
                the_permalink();
                ?>
开发者ID:Crowdapps,项目名称:OpenInnovationCore,代码行数:30,代码来源:wrapper.php


注:本文中的appthemes_before_post_title函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。