wordpress调用最新文章的代码
<?php query_posts('showposts=6&cat=-1'); ?> // 显示篇数和排除分类
<ul>
<?php while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
<?php endwhile;?>
</ul>
wordpress调用最新文章的代码
<?php query_posts('showposts=6&cat=-1'); ?> // 显示篇数和排除分类
<ul>
<?php while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
<?php endwhile;?>
</ul>
在服务项目父页面通过以下代码,调用出子页面的标题
在竞争激烈的国际市场,WordPress外贸建站服务不仅仅是一个网站的搭建,更是业务提升的关键。本文将分享… Continue reading WordPress外贸建站服务的高效应用与管理
WordPress作为全球应用最广泛的CMS系统,很好很强大,被从多的网站使用。但是,也不是所有的网站。下面简站WP小编从自己多年WordPress建站经验的角度,给大家讲讲,有哪些网站不适合使用WordPress搭建。
在选择建站引擎时,WordPress是许多企业和个体创业者的首选。然而,WordPress本身有各种不同的… Continue reading WordPress外贸建站程序对比
wordpress子页面获取父页面的标题和链接
wordpress模板制作的过程中有时会用到获取父页面的ID,下面是wordpress获取父页面的2种方法。