导读:搭建网站搭建网站用纯代码的方法给wordpress添加说说、微博、微语功能吧!作为一个独立的个人博客,说说怎么少得了,有时候我们写日志,或者做通告,长不长,短不短的话语总是纠结建站技术教学技术支持网站。
用纯代码的方法给wordpress添加说说、微博、微语功能吧!作为一个独立的个人博客,说说怎么少得了,有时候我们写日志,或者做通告,长不长,短不短的话语总是纠结怎么写成文章,但是为了人性化,像qq空间的说说,emlog的微语以及微博,都是把短语发挥到了极致,无奈wordpress没有这项功能,今天无作为就教大家添加该功能,非常简单,代码也很少。现在博客越来越难做了,基本没又人会看,不过WordPress的功能却是越来越强大,在无聊分享的同时,我们是不是可以单独弄一个说说页面出来,发送一下郁闷的心情呢?
纯代码给wordpress添加说说/微博/微语功能
首先在主题的functions.php里面加入以下代码:
//说说
add_action('init', 'my_custom_init'); function my_custom_init() { $labels = array( 'name' => '说说', 'singular_name' => 'singularname', 'add_new' => '发表说说', 'add_new_item' => '发表说说', 'edit_item' => '编辑说说', 'new_item' => '新说说', 'view_item' => '查看说说', 'search_items' =>dede模板下载 '搜索说说', 'not_found' => '暂无说说', 'not_found_in_trash' => '没有已遗弃的说说', 'parent_item_colon' => '', 'menu_name' => '说说' ); $args = array( 'labels' => $labels, 'public' => true, 'publicly_queryable' => true, 'show_ui' => true, 'show_in_menu' => true, 'que织梦的模板ry_var' => true, 'rewrite' => true, 'capability_type' => 'post', 'has_archive' => true, 'hierarchical' => false, 'menu_position' => null, 'supports' => array('title','editor','author') ); register_post_type('shuoshuo',$args); }添加之后创建一个php文档,把以下内容(顺便附上css样式)复制进去:保存该文档,命名为shuoshuo.php,将其放于主题目录下。<?php /*
Template Name: 说说
author: 模板下载吧
url: https://www.mbxzb.com
*/
get_header(); ?>
<style type="text/css">
#shuoshuo_content {
background-color: #fff;
padding: 10px;
min-height: 500px;
}
/* shuo */
body.theme-dark .cbp_tmtimeline::before {
background: RGBA(255, 255, 255, 0.06);
}
关键词标签: WordPress 功能 代码
声明: 本文由我的SEOUC技术文章主页发布于:2023-07-23 ,文章纯代码给wordpress添加说说/微博/微语功能,搭建网主要讲述代码,功能,wordpress网站建设源码以及服务器配置搭建相关技术文章。转载请保留链接: https://www.seouc.com/article/web_35120.html