分类目录归档:WordPress

去掉模块中的wordpress.org

用过wordpress博客程序的人都知道,wordpress小工具默认有一个模块“功能”;这个功能主要的作用就是注册和登陆;但是当我们启动这个功能后:显示如下:功能

管理站点
登出
文章RSS
评论RSS
WordPress.org

很明显,这样的情况不是我们所想要的,我们至少要去掉”wordpress.org”;这样无论是对自己网站品牌来说还是对于网站优化来说都是有必要的;

wordpress 去掉“wordpress.org”步骤:

1、进入文件夹

一般情况下,路径是:根目录\wp-includes\widgets

2、找到 class-wp-widget-meta.php

3、修改 class-wp-widget-meta.php
一般情况下,我们只需要修改60行~75行代码即可,这几行代码就是主要输出“wordpress.org”的,可以选择删除,也可以选择屏蔽;我是选择的后者:

<?php
/**
* Filters the "Powered by WordPress" text in the Meta widget.
*
* @since 3.6.0
*
* @param string $title_text Default title text for the WordPress.org link.
*/
echo apply_filters( 'widget_meta_poweredby', sprintf( '<li><a href="%s" title="%s">%s</a></li>',
esc_url( __( 'https://wordpress.org/' ) ),
esc_attr__( 'Powered by WordPress, state-of-the-art semantic personal publishing platform.' ),
_x( 'WordPress.org', 'meta widget link text' )
) );
wp_meta();
?>

修改为

<?php
/**
* Filters the "Powered by WordPress" text in the Meta widget.
*
* @since 3.6.0
*
* @param string $title_text Default title text for the WordPress.org link.
echo apply_filters( 'widget_meta_poweredby', sprintf( '<li><a href="%s" title="%s">%s</a></li>',
esc_url( __( 'https://wordpress.org/' ) ),
esc_attr__( 'Powered by WordPress, state-of-the-art semantic personal publishing platform.' ),
_x( 'WordPress.org', 'meta widget link text' )
) );
wp_meta();
*/
?>

wordpress仅文章新标签页打开

在主题根目录下面 打开 content.php 这个文件

第28行如下代码:

<a href=”<?php the_permalink(); ?>” rel=”bookmark”><?php the_title(); ?></a>
在rel…前面加上target=”_blank”,如下:

<a href="<?php the_permalink(); ?>" target="_blank"rel="bookmark"><?php the_title(); ?></a>

这样首页显示的文章标题,点击后就是在新的标签页或新窗口打开的了,其他的就不会再新窗口打开!

wordpress表格自适应代码

正确的(自适应宽度)代码如下:

<div>周杰伦jay专辑《范特西》专辑曲目</div>
<table style="table-layout: fixed;" border="1" width="100%" cellspacing="0" cellpadding="2">
<tbody>
<tr>
<th style="text-align: left;">序号</th>
<th style="text-align: left;">曲名</th>
<th style="text-align: left;">作词</th>
<th style="text-align: left;">作曲</th>
<th style="text-align: left;">编曲</th>
</tr>
<tr>
……
</tr>
</tbody>
</table>

可以看到上面代码中关于定义table(表格)属性的代码是:

<table style="table-layout: fixed;" border="1" width="100%" cellspacing="0" cellpadding="2">