『壹』 如何将wordPress的某篇文章设置为首页置顶文章
1、进入博客后台文章列表,我们首选需要找到是你想设置为置顶的文章的文章,点击专“快速编辑”,属
2快速编辑界面这时候会跳出来,在快速编辑界面的右侧,找到“置顶这篇文章”的选项,然后打钩选择,再点击“更新”就可以了。
3“更新“按钮必须要点击后才能保证设置”置顶文章“的成功。
『贰』 wordpress 如何设置和调用热点文章 推荐文章 头条文章
调用最新文章:
<?php query_posts(‘showposts=14′); ?>
<ul>
<?php while (have_posts()) : the_post(); ?>
<li><a title=”<?php the_title(); ?>” href=”<?php the_permalink() ?>”><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>
调用热门文章:
<ul>
<?php
$post_num = 14; // 设置调用条数
$args = array(
‘post_password’ => ”,
‘post_status’ => ‘publish’, // 只选公开的文章.
‘post__not_in’ => array($post->ID),//排除当前文章
‘caller_get_posts’ => 1, // 排除置顶文章.
‘orderby’ => ‘comment_count’, // 依评论数排序.
‘posts_per_page’ => $post_num
);
$query_posts = new WP_Query();
$query_posts->query($args);
while( $query_posts->have_posts() ) { $query_posts->the_post(); ?>
<li><a href=”<?php the_permalink(); ?>” title=”<?php the_title(); ?>”><?php the_title(); ?></a></li>
<?php } wp_reset_query();?>
</ul>
调用随机文章:
<ul>
<?php
global $post;
$postid = $post->ID;
$args = array( ‘orderby’ => ‘rand’, ‘post__not_in’ => array($post->ID), ‘showposts’ => 14);
$query_posts = new WP_Query();
$query_posts->query($args);
?>
<?php while ($query_posts->have_posts()) : $query_posts->the_post(); ?>
<li><a href=”<?php the_permalink(); ?>” title=”<?php the_title_attribute(); ?>”><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>
『叁』 wordpress首页除了正常文章外,再调用单独一个文章置顶代码怎么写
这个不用代码直接登陆你的后台,通过更新文章之后在右侧有一个文章置顶,只要选中他就可以将最新的文章置顶。至于这个代码可以不用写。
详细步骤:
进入你网站的后台,通过在文章更新页面先更新文章,确定文章的特色图像以及你所需要更新所有的内容,待发布文章之前在编辑页面的右侧就有一个文章置顶的字样,你只需要将那个勾选文章自然而然会置顶,当然这个也是最新的置顶。
『肆』 怎么给wordpress主题添加一个文章标题置顶的功能
①其实代码很简单,区区很短的代码即可以实现,原理也很简单,简单的php代码判断:版
<?php if ( is_sticky() ) {echo "置顶!权";}?>
只需要把这段代码添加到输出标题的代码后面即可,一般是放在<?php the_title(); ?></a>后面,意思是:如果这是一篇置顶文章,则输出“置顶!”文字。
『伍』 wordpress分类目录页面怎么置顶文章呢请教wordpress高手回答!
只要修改代码就可以实现。
原理是这样的,找到首页模版,替换成你需要显示的那个分类的ID代码,这样就可以了,但是也只有设置了ID的分类才会在首页出现。如果你发布的文章不在那个分类里,它也就还是不会显示在首页。
『陆』 WordPress怎么设置文章置顶
1.首先打网站后台,并登陆后台。
『柒』 关于wordpress主题调用置顶文章!怎样改写这段呢
在数组里面添加一句
'post__in'=>get_option('sticky_posts'),
即可获取置顶文章