本文整理汇总了PHP中thematic_post_class函数的典型用法代码示例。如果您正苦于以下问题:PHP thematic_post_class函数的具体用法?PHP thematic_post_class怎么用?PHP thematic_post_class使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了thematic_post_class函数的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: wicked_indexloop
function wicked_indexloop()
{
// load the custom options
global $childoptions;
foreach ($childoptions as $value) {
${$value}['id'] = get_option($value['id'], $value['std']);
}
query_posts("posts_per_page=4&cat=" . $wicked_feature_cat);
$counter = 1;
if (have_posts()) {
while (have_posts()) {
the_post();
?>
<div id="post-<?php
the_ID();
?>
" class="<?php
thematic_post_class();
?>
">
<?php
thematic_postheader();
if ($counter == 1 && has_post_thumbnail() && !is_paged()) {
the_post_thumbnail('homepage-thumbnail');
}
?>
<div class="entry-content">
<?php
the_excerpt();
?>
<a href="<?php
the_permalink();
?>
" class="more"><?php
echo more_text();
?>
</a>
<?php
$counter++;
?>
</div>
</div><!-- .post -->
<?php
}
} else {
?>
<h2>Eek</h2>
<p>There are no posts to show!</p>
<?php
}
wp_reset_query();
}
示例2: wicked_indexloop
function wicked_indexloop()
{
query_posts("posts_per_page=4");
$counter = 1;
if (have_posts()) {
while (have_posts()) {
the_post();
?>
<div id="post-<?php
the_ID();
?>
" class="<?php
thematic_post_class();
?>
">
<?php
thematic_postheader();
if ($counter == 1 && has_post_thumbnail() && !is_paged()) {
the_post_thumbnail('homepage-thumbnail');
}
?>
<div class="entry-content">
<?php
the_excerpt();
?>
<a href="<?php
the_permalink();
?>
" class="more"><?php
echo more_text();
?>
</a>
<?php
$counter++;
?>
</div>
</div><!-- .post -->
<?php
}
} else {
?>
<h2>Eek</h2>
<p>There are no posts to show!</p>
<?php
}
wp_reset_query();
}
示例3: get_sidebar
<?php
// calling the widget area 'page-top'
get_sidebar('page-top');
the_post();
thematic_abovepost();
?>
<div id="post-<?php
the_ID();
echo '" ';
if (!THEMATIC_COMPATIBLE_POST_CLASS) {
post_class();
echo '>';
} else {
echo 'class="';
thematic_post_class();
echo '">';
}
// creating the post header
thematic_postheader();
?>
<div class="entry-content">
<?php
the_content();
wp_link_pages("\t\t\t\t\t<div class='page-link'>" . __('Pages: ', 'thematic'), "</div>\n", 'number');
edit_post_link(__('Edit', 'thematic'), '<span class="edit-link">', '</span>');
?>
</div><!-- .entry-content -->
示例4: thematic_tag_loop
function thematic_tag_loop()
{
while (have_posts()) {
the_post();
?>
<div id="post-<?php
the_ID();
?>
" class="<?php
thematic_post_class();
?>
">
<?php
thematic_postheader();
?>
<div class="entry-content">
<?php
thematic_content();
?>
</div>
<?php
thematic_postfooter();
?>
</div><!-- .post -->
<?php
}
}
示例5: thematic_tag_loop
/**
* The Tag loop
*
* Located in tag.php
*
* Override: childtheme_override_tag_loop
*/
function thematic_tag_loop()
{
while (have_posts()) {
the_post();
// action hook for insterting content above #post
thematic_abovepost();
?>
<?php
echo '<div id="post-' . get_the_ID() . '" ';
// Checking for defined constant to enable Thematic's post classes
if (!THEMATIC_COMPATIBLE_POST_CLASS) {
post_class();
echo '>';
} else {
echo 'class="';
thematic_post_class();
echo '">';
}
// creating the post header
thematic_postheader();
?>
<div class="entry-content">
<?php
thematic_content();
?>
</div><!-- .entry-content -->
<?php
thematic_postfooter();
?>
</div><!-- #post -->
<?php
// action hook for insterting content below #post
thematic_belowpost();
}
}
示例6: thematic_tag_loop
function thematic_tag_loop()
{
while (have_posts()) {
the_post();
thematic_abovepost();
?>
<div id="post-<?php
the_ID();
echo '" ';
if (!THEMATIC_COMPATIBLE_POST_CLASS) {
post_class();
echo '>';
} else {
echo 'class="';
thematic_post_class();
echo '">';
}
thematic_postheader();
?>
<div class="entry-content">
<?php
thematic_content();
?>
</div><!-- .entry-content -->
<?php
thematic_postfooter();
?>
</div><!-- #post -->
<?php
thematic_belowpost();
}
}
示例7: gallery_single_post
function gallery_single_post()
{
global $post;
?>
<div id="post-<?php
the_ID();
?>
" class="<?php
thematic_post_class();
?>
">
<ul>
<?php
if (get_post_meta($post->ID, 'pickle-name')) {
?>
<li class="maker_name"><?php
echo get_post_meta($post->ID, 'pickle-name', $single = true);
?>
</li><?php
}
if (get_post_meta($post->ID, 'pickle-maker')) {
?>
<li class="maker_name"><?php
echo get_post_meta($post->ID, 'pickle-maker', $single = true);
?>
</li><?php
}
if (get_post_meta($post->ID, 'store-purchased')) {
?>
<li class="maker_name"><?php
echo get_post_meta($post->ID, 'store-purchased', $single = true);
?>
</li><?php
}
if (get_post_meta($post->ID, 'store-location')) {
?>
<li class="maker_name"><?php
echo get_post_meta($post->ID, 'store-location', $single = true);
?>
</li><?php
}
if (get_post_meta($post->ID, 'price')) {
?>
<li class="maker_name"><?php
echo get_post_meta($post->ID, 'price', $single = true);
?>
</li><?php
}
if (get_post_meta($post->ID, 'vegetable-type')) {
?>
<li class="maker_name"><?php
echo get_post_meta($post->ID, 'vegetable-type', $single = true);
?>
</li><?php
}
if (get_post_meta($post->ID, 'flavor')) {
?>
<li class="maker_name"><?php
echo get_post_meta($post->ID, 'flavor', $single = true);
?>
</li><?php
}
if (get_post_meta($post->ID, 'texture')) {
?>
<li class="maker_name"><?php
echo get_post_meta($post->ID, 'texture', $single = true);
?>
</li><?php
}
?>
</ul>
</div>
<?php
}
示例8: tm_single_post
function tm_single_post()
{
?>
<div id="post-<?php
the_ID();
?>
" class="<?php
thematic_post_class();
?>
">
<?php
tm_postheader();
?>
<div class="entry-content">
<?php
thematic_content();
?>
<?php
wp_link_pages('before=<div class="page-link">' . __('Pages:', 'thematic') . '&after=</div>');
?>
</div>
<?php
thematic_postfooter();
?>
</div><!-- .post -->
<?php
}
示例9: gallery_tag_loop
function gallery_tag_loop()
{
global $post;
/* Count the number of posts so we can insert a widgetized area */
$count = 1;
while (have_posts()) {
the_post();
?>
<div id="post-<?php
the_ID();
?>
" class="<?php
thematic_post_class();
?>
">
<div class="entry-content">
<?php
childtheme_post_header();
?>
<a href="<?php
echo the_permalink();
?>
"><span class="slide-title"><?php
echo the_title();
?>
</span><img class="thumbnail" src="<?php
if (get_post_meta($post->ID, 'thumbnail')) {
echo get_post_meta($post->ID, 'thumbnail', $single = true);
} else {
bloginfo('url');
echo "/wp-content/themes/gallery/images/thumbnail-default.jpg";
}
?>
" width="125" height="125" alt="<?php
echo the_title();
?>
" /></a>
</div>
</div><!-- .post -->
<?php
comments_template();
if ($count == $thm_insert_position) {
get_sidebar('index-insert');
}
$count = $count + 1;
}
}