wordpress文章中的blog如何去掉
1个回答
展开全部
哎,这个最好得根据你的模板来说,不同的模板可能标题的显示方式都不一样。
这个东西定义在主题下得header.php中。
以默认的twenty-ten为例。
在<title>之后,加入
<?php if(is_single()){ ?> // 判断当前页面是否为文章页
<?php wp_title( '', true, 'right' ); ?> // 引号均为单引号
<?php } ?>
这时候后面应该就是原内容了,
需要把原内容开头的<?php 后面加上if(!is_single()){ ?>变成:
<?php if(!is_single()){ ?>
再在后续内容前加上<?php
在结尾处的 ?>之后还要加一句<?php } ?>
全部代码:
<title>
<?php if(is_single()){ ?>
<?php wp_title( '', true, 'right' ); ?>
<?php } ?>
<?php if(!is_single()){ ?>
<?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 ) );?>
<?php } ?>
</title>
这个东西定义在主题下得header.php中。
以默认的twenty-ten为例。
在<title>之后,加入
<?php if(is_single()){ ?> // 判断当前页面是否为文章页
<?php wp_title( '', true, 'right' ); ?> // 引号均为单引号
<?php } ?>
这时候后面应该就是原内容了,
需要把原内容开头的<?php 后面加上if(!is_single()){ ?>变成:
<?php if(!is_single()){ ?>
再在后续内容前加上<?php
在结尾处的 ?>之后还要加一句<?php } ?>
全部代码:
<title>
<?php if(is_single()){ ?>
<?php wp_title( '', true, 'right' ); ?>
<?php } ?>
<?php if(!is_single()){ ?>
<?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 ) );?>
<?php } ?>
</title>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
博思aippt
2024-07-20 广告
2024-07-20 广告
作为深圳市博思云创科技有限公司的工作人员,对于Word文档生成PPT的操作,我们有以下建议:1. 使用另存为功能:在Word中编辑完文档后,点击文件->另存为,选择PowerPoint演示文稿(*.pptx)格式,即可将文档内容转换为PPT...
点击进入详情页
本回答由博思aippt提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |