SOHO建站

wordpress调用指定栏目下的tag标签相关文章列表

<?php
global $post;
$post_tags = wp_get_post_tags($post->ID);
if ($post_tags) {
foreach ($post_tags as $tag) {
// 获取标签列表
$tag_list[] .= $tag->term_id;
}
$cat = get_the_category();
foreach($cat as $key=>$category){
$catid = $category->term_id;
}
// 随机获取标签列表中的一个标签
$post_tag = $tag_list[ mt_rand(0, count($tag_list) - 1) ];

// 该方法使用 query_posts() 函数来调用相关文章,以下是参数列表
$args = array(
'tag__in' => array($post_tag),
'cat' => $catid,  // 不包括的分类ID
'post__not_in' => array($post->ID),
'showposts' => 6,                           // 显示相关文章数量
'caller_get_posts' => 1
);
query_posts($args);

if (have_posts()) {
while (have_posts()) {
the_post(); update_post_caches($posts); ?>
<div id="post-<?php the_ID(); ?>" class="col-md-4 mb-4">
<div class="portfolio">
<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>">

<div class="image">
<img src='<?php if ( has_post_thumbnail() ) { ?>
<?php
$large_image_url = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'full');
echo $large_image_url[0];
?>
<?php } else {?>
<?php bloginfo('template_url'); ?>/images/noneimg-portfolio.png
<?php } ?>' class='' alt='<?php the_title(); ?>'>
<div class="hover-effect">
<div class="hover-effect-inn"></div>
</div>
</div>
<h1><?php the_title(); ?></h1>

<p><?php the_excerpt(); ?></p>




</a>

</div>
</div>
<?php
}
}
else {
echo '<li>* 暂无相关文章</li>';
}
wp_reset_query();
}
else {
echo '<li>* 暂无相关文章</li>';
}
?>

这是wordpress模板制作中常会用到的一段代码

Published
Categorized as 建站知识 Tagged

By SOHO

wowsoho.com是一个wordpress建站公司

The best foreign trade website building company in Shenzhen

Waimaoyes is a company specializing in foreign trade website construction, mainly providing WordPress multilingual foreign trade small language website construction services.

询盘鸭跨境电商独立站建站平台

询盘鸭是专业的WordPress+WooCommerce跨境电商独立站解决方案服务商。

非插件方式实现owl carousel图片轮播

要实现一个非插件方式的图片播放功能,同时支持后台管理和区块编辑器,你需要考虑几个关键部分:HTML结构、CSS样式和JavaScript逻辑。

如何添加wordpress文章形式

wordpress的功能很强,通过文章形式,可以让wordpress文章,有多种形式来展示。并不是所有的主题都有wordpress的文章形式,如果想有文章形式,将以下代码添加到 functions.php文件中即可。

WP外贸建站轻松上手 建设你的全球化品牌

  在数字化时代,拥有一个强大的在线存在对于外贸企业而言至关重要。WordPress作为一个功能丰富、易于使用… Continue reading WP外贸建站轻松上手 建设你的全球化品牌

如何做好非洲跨境电商的网站

要做好非洲跨境电商的网站,需要综合考虑市场调研、产品定位、供应链管理、物流服务、营销策略和客户服务等多个方面。