调用最新文章:
<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>
wp独立站安装立即购买按键方法如下。
1、使用WPSimplePay添加立即购买按钮(无需电子商务插件),可以使用WPSimplePay将简单的立即购买按钮添加到任何页面、帖子或小部件就绪区域。
2、WPSimplePay允许您向任何WordPress博客或网站添加直接购买按钮。
WordPress功能调用方法显示站点副标题
将显示网站副标题的功能写入主题functionphp文件,在Wordpress主题的headerphp文件中调用,实现网站站点标题和副标题的同时显示。
在Wordpress主题的functionphp文件中最后一个PHP结束符前加入如下代码:
function show_wp_title(){
global $page, $paged;
wp_title( ‘-‘, true, ‘right’ );
// 添加网站标题
bloginfo( ‘name’ );
// 为首页添加网站描述
$site_description = get_bloginfo( ‘description’, ‘display’ );
if ( $site_description && ( is_home() || is_front_page() ) )
echo ‘ – ‘ $site_description;
// 如果有必要,在标题上显示一个页面数
if ( $paged >= 2 || $page >= 2 )
echo ‘ – ‘ sprintf( ‘第%s页’, max( $paged, $page ) );
}
2
然后再在Wordpress主题的headerphp文件中,用下面的方法调用:
<title><php if(function_exists(‘show_wp_title’)){show_wp_title();} ></title>
3
你也可以将代码中的“ – ”符号替换为自己喜欢的分隔符号,不过比较常见的就是“-”和“|”这两个了。
欢迎分享,转载请注明来源:品搜搜测评网