SOHO创业

WordPress调用指定标签下文章

根据wordpress指定标签,调用该标签下的文章。

<?php
$args=array(
'tag_id' => 1,
'posts_per_page' => 10,
);
//wodepress.org
query_posts($args);
if(have_posts()) : while (have_posts()) : the_post();
?>
<li>
//内容
</li>

<?php endwhile; endif; wp_reset_query();?>
Published
Categorized as 建站知识 Tagged

By SOHO

wowsoho.com是一个关注跨境电商、创业话题的网站。

给WordPress自定义字段加判断

如果有自定义字段,显示自定义字段,如果没有自定义字段,不显示自定义字段。

wordpress网站太慢 怎么才能让快起来

让wordpress网站快起来

wordpress建站费用明细

WordPress建站的主要费用包括域名、托管、主题、插件和其他相关费用,如SSL等。‌

The best WordPress service company in China

Jianzhanpress not only excels in WordPress theme design, but also has significant advantages in the field of foreign trade website construction, which can help enterprises achieve success in the international market.

WordPress外贸建站服务的高效应用与管理

  在竞争激烈的国际市场,WordPress外贸建站服务不仅仅是一个网站的搭建,更是业务提升的关键。本文将分享… Continue reading WordPress外贸建站服务的高效应用与管理

wordpress显示相同父分类目录下的所有子分类目录

调用某个父分类下的所有子分类名称