文章内容调用wordpress-wordpress调用指定文章
原创,时间:2023-02-21 23:30:08
关于文章内容调用wordpress内容导航:
1、文章内容调用wordpress
2、wordpress调用指定文章
<?php
$args=array(
'cat' => 1, // 分类ID
'posts_per_page' => 10, // 显示篇数
);
query_posts($args);
if(have_posts()) : while (have_posts()) : the_post();
?>
//标题
<?php if (has_excerpt()) {
echo $description = get_the_excerpt(); //文章编辑中的摘要
}else {
echo mb_strimwidth(strip_tags(apply_filters('t读但何频敌就亚结胶械补he_content', $post->post_content)), 0, 170,"……"); //文章编辑中若无摘要,自定截取文章内容字数做为摘要
} ?>
3、wordpress调用最新文章
<?php
$limit = get_option('posts_per_page');
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts('showposts=' . $limit=7 . '&paged=' . $paged);//limit变量控制最新文章数量
$wp_query->is_archive = true; $wp_query->is_home = false;
?>
<?php while(have_posts()) : the_post(); if(!($first_post == $post->ID)) : ?>
<ul>
<li><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">
<?php the_title(); ?></a></li>
</ul>
<?php endif; endwhile; ?>
">
显示最新文章
行业热门话题:
【wordpress调用指定文章】【wordpress调用最新文章】【如何调用wordpress函数】【wordpress引用嵌入文章】【wordpress 调用其他网站api】【wordpress调用自定义字段】【wordpress导入文章】【wordpress 相关文章】【wordpress写文章插件】【wordpress文章编辑器】