展开全部
这个在内容循环里面改,以默认主题Twenty Eleven为例 ,可查看content.php文件里的内容:
<?php if ( !is_archive() and !is_category() ) : //如果不是存档页岂不是分类页 ?>
<div class="entry-summary">
<?php the_excerpt(); ?>
</div><!-- .entry-summary -->
<?php endif; ?>
只要改动这里就可以了。因为Twenty Eleven的index.php archive.php category.php中的内容循环里面,都是载入的<?php get_template_part( 'content', get_post_format() );?>;
参照这个修改就行了。
博思aippt
2024-07-20 广告
2024-07-20 广告
作为深圳市博思云创科技有限公司的工作人员,对于Word文档生成PPT的操作,我们有以下建议:1. 使用另存为功能:在Word中编辑完文档后,点击文件->另存为,选择PowerPoint演示文稿(*.pptx)格式,即可将文档内容转换为PPT...
点击进入详情页
本回答由博思aippt提供
展开全部
<?php
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<title><?php
/*
* Print the <title> tag based on what is being viewed.
*/
global $page, $paged;
wp_title( '-', true, 'right' );
// Add the blog name.
bloginfo( 'name' );
// Add the blog description for the home/front page.
$site_description = get_bloginfo( 'description', 'display' );
if ( $site_description && ( is_home() || is_front_page() ) )
echo " -$site_description";
// Add a page number if necessary:
if ( $paged >= 2 || $page >= 2 )
echo ' |' . sprintf( __( 'Page %s', 'twentyten' ), max( $paged, $page ) );
if($options['feed'] && $options['feed_url']) {
if (substr(strtoupper($options['feed_url']), 0, 7) == 'HTTP://') {
$feed = $options['feed_url'];
} else {
$feed = 'http://' . $options['feed_url'];
}
} else {
$feed = get_bloginfo('rss2_url');
}
?></title>
将上面代码拷贝到header.php里面就可以了
追问
不行啊!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询