猪呆萌 – WordPress主题,苹果cms模板 > WordPress主题

网赚用什么wordpress主题

本文作者:admin 2024-05-31

很简单,如果还是不懂就加我百度Hi,私聊

1.安装要更换的主题

把你要更换的主题的整个文件夹一起复制到wp-content\themes目录下

2.后台启用该主题

进入你的wordpress的后台,外观/主题,启用该主题就行了,原来的主题也不需要删除,你喜欢那个主题就启用那个,很方便

插件安装也一样,安装在wp-content\plugins目录下,然后在后台启用该插件就行

有没有好看好用的 wordpress 主题可以推荐

1、 comments.php评论表单添加自想要字段:



tabindex 属性按照排要自试试….

2、评论表单使用系统自带请用添加表单字段请略

add_filter('comment_form_default_fields','comment_form_add_ewai');
function comment_form_add_ewai($fields) {
$label1 = __( '家/区' );
$label2 = __( 'Skype账号' );
$label3 = __( '电' );
$label4 = __( '传真' );
$label5 = __( '址' );
$value1 = isset($_POST['guojia']) ? $_POST['guojia'] : false;
$value2 = isset($_POST['skype']) ? $_POST['skype'] : false;
$value3 = isset($_POST['tel']) ? $_POST['tel'] : false;
$value4 = isset($_POST['fax']) ? $_POST['fax'] : false;
$value5 = isset($_POST['address']) ? $_POST['address'] : false;
$fields['guojia'] =<<

{$label1}

HTML;
return $fields;
}

3、 接收表单字段并写入数据库
主题目录 functions.php添加代码
add_action('wp_insert_comment','wp_insert_tel',10,2);
function wp_insert_tel($comment_ID,$commmentdata) {
$tel = isset($_POST['tel']) ? $_POST['tel'] : false;
//_tel 存储数据库字段名字取数据用
update_comment_meta($comment_ID,'_tel',$tel);
}
两步数据写入数据库信试试看
add_action()参数102别表示该函数执行优先级10(默认值值越优先级越高)该函数接受2参数

4、台显示额外字段
前面两步接收写入数据库要台评论列表显示呢代码复制主题目录functions.php :
add_filter( 'manage_edit-comments_columns', 'my_comments_columns' );
add_action( 'manage_comments_custom_column', 'output_my_comments_columns', 10, 2 );
function my_comments_columns( $columns ){
$columns[ '_tel' ] = __( '电' ); //电代表列名字
return $columns;
}
function output_my_comments_columns( $column_name, $comment_id ){
switch( $column_name ) {
case _tel :
echo get_comment_meta( $comment_id, '_tel', true );
break;
}
要前台留言列表调用用代码_tel数据库存储字段名字
$tel = get_comment_meta($comment->comment_ID,'_tel',true);
if( !empty($tel)){
echo 电.$tel;
}
?>

5、 功告看看台评论列表列电没错

6、要移除某自带表单字段使用代码
function tel_filtered($fields){
if(isset($fields['tel']))
unset($fields['tel']);
return $fields;
}
add_filter('comment_form_default_fields', 'tel')

上一篇:wordpress换主题主页还是旧主题!    下一篇:WordPress 淘宝客主题
相关文章