我有2个特色的职位,在一个部门id,一个大类和一个小类。我想大功能分区是在分类基地后。。大特色邮政编码显示在下面。
<div class="main_feat">
<?php get_the_image( array( 'size' => 'featured', 'width' => 310, 'before' => '<div class="thumb">', 'after' => '</div>' ) ); ?>
<h2><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a> </h2>
<div class="date"><?php if (option::get('featured_date_format') == 'time ago') { echo time_ago(); } else { printf('%s, %s', get_the_date(), get_the_time()); } ?></div>
<div class="content">
<div class="entry">
<?php the_excerpt(); ?>
<div class="meta">
<a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>" class="nextActions"><?php _e('সম্পূর্ন অংশটুকু', 'wpzoom'); ?> →</a> <span class="comments"><?php comments_popup_link('0', '1', '%'); ?></span><div class="clear"></div>
</div>
</div><!-- /.entry -->
</div><!-- /.content -->
</div>
我想做这个div类的分类库。假设我有一个类别名称。我想做这个班级的特色分类库。
特色完整代码显示如下...
<div id="featured">
<?php
$featured = new WP_Query( array(
'showposts' => option::get('featured_art_number'),
'post__not_in' => get_option('sticky_posts'),
'meta_key' => 'wpzoom_is_featured',
'meta_value' => 1
) );
if ($featured->post_count > 0) : $i = 0;
while( $featured->have_posts() ) { $featured->the_post(); global $post; $i++;
if ($i == 1)
{ ?>
<div class="main_feat">
<?php get_the_image( array( 'size' => 'featured', 'width' => 310, 'before' => '<div class="thumb">', 'after' => '</div>' ) ); ?>
<h2><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a> </h2>
<div class="date"><?php if (option::get('featured_date_format') == 'time ago') { echo time_ago(); } else { printf('%s, %s', get_the_date(), get_the_time()); } ?></div>
<div class="content">
<div class="entry">
<?php the_excerpt(); ?>
<div class="meta">
<a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>" class="nextActions"><?php _e('সম্পূর্ন অংশটুকু', 'wpzoom'); ?> →</a>
<span class="comments"><?php comments_popup_link('0', '1', '%'); ?></span><div class="clear"></div>
</div>
</div><!-- /.entry -->
</div><!-- /.content -->
</div>
<div class="headings">
<ul>
<?php } else { ?>
<li>
<h2><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<?php get_the_image( array( 'size' => 'featured-small', 'width' => 100, 'height' => 75, 'before' => '<div class="post-thumb">', 'after' => '</div>' ) ); ?>
<?php the_content_limit(option::get('featured_excerpt')); ?>
<div class="clear"></div>
<div class="meta">
<?php printf('%s, %s', get_the_date(), get_the_time()); ?>
<span class="comments"><?php comments_popup_link('0', '1', '%'); ?></span>
</div>
</li>
<?php }
$i ++; } ?>
</ul>
</div>
<?php endif; ?>
<?php wp_reset_query(); ?>
<div class="clear"></div>
</div> <!-- /#featured -->
<div class="clear"></div>
您可以在希望使用div的位置使用此代码。。。
<?php query_posts('orderby=name&order=asc&cat=43&showposts=100'); ?>
<?php while (have_posts()) : the_post(); ?> ">
<?php the_title(); ?> <?php endwhile;?>
我认为这将是一项工作。。。
我找到了这个解决方案,可以让特色图片默认位于文章标题下方。wordpress在帖子标题下添加特色图片 我把这个php放在哪里? 它是否适用于所有职位?
问题内容: 可以说我有: 我想实现allEqual()函数作为扩展,所以我可以做 问题答案: 可以说具体类型是S CollectionType协议
我目前试图使3个表之间的关系。 数据库
我试图添加自定义帖子类型的特色图像 我已经在我的主题的functions.php文件中添加了主题支持。以下是代码: 我还尝试将support子句添加到register post type部分,但仍然没有结果。 这里是注册自定义帖子类型代码: 我找遍了所有地方,但是找不到解决这个问题的办法。 注意:我可以为我的普通帖子设置特色图像,问题是自定义帖子类型。此外,我有注册自定义后类型通过一个插件,我自己
我目前在wordpress网站上有一个基于复选框的搜索和筛选。 基本上,它使用这个wp_查询工作 我想远离使用类别(因为这让使用博客很痛苦) 所以我现在已经使用自定义分类法设置了所有内容,并注意到没有“taxonomy__and”。 有没有人知道一种使用WP_查询的方法来搜索使用分类法的帖子,就像category_u和and一样? 例如。我传递了多个分类法id,它只返回所有链接的帖子。
> 我需要自定义单词按基本搜索过滤器。 它在文章标题和文章内容中对关键字进行精细搜索。 现在我需要显示结果,如果用户输入匹配类别名称的名称,那么它应该从该类别以及其他结果中提取结果。 我假设,它应该类似于在税务查询中为category_name或category_in运算符使用喜欢子句。 如何实现这种情况,意味着当用户输入与类别名称匹配的任何关键字时,它应该从该类别中提取所有结果以及常规搜索结果。