WordPress使用自定义文章类型实现任意模板的方法和怎么做邮件回复

主要就是使用了register_post_type 函数。

1、创建插件目录

新建一个文件夹用来存放插件文件,这里我就命名这个文件夹为myMood

2、创php代码文件

在刚才创建的文件夹里面新建一个php文件,命名为myMood,用来书写插件代码

3、添加头部描述

复制代码

代码如下:<?php
/*
Plugin Name: Movie Reviews
Plugin URI: http://wp.tutsplus.com/
Description: Declares a plugin that will create a new post type .
Version: 1.0
Author: Summer
Author URI: http://www.xtwind.com/
License: GPLv2
*/
?>
4、注册自定义函数
在刚刚创建的php文件代码中,在?>前面添加函数:

复制代码

代码如下:

add_action( ‘init‘, ‘create_myMood‘ );

得到如下代码:

复制代码

代码如下:<?php
/*
Plugin Name: Movie Reviews
Plugin URI: http://wp.tutsplus.com/
Description: Declares a plugin that will create a new post type .
Version: 1.0
Author: Summer
Author URI: http://www.xtwind.com/
License: GPLv2
*/
add_action( ‘init‘, ‘create_myMood‘ );
?>
5、添加函数功能
把下面这段代码添加到 add_action( ‘init‘, ‘create_myMood‘ ); 的前面

复制代码

代码如下:function create_lsxq() {
register_post_type( ‘lsxq‘,
array(
‘labels‘ => array(
‘name‘ => ‘零散心情‘,
‘singular_name‘ => ‘lsxq‘,
‘add_new‘ => ‘写心情‘,
‘add_new_item‘ => ‘添加一条新心情‘,
‘edit‘ => ‘Edit‘,
‘edit_item‘ => ‘Edit lsxq‘,
‘new_item‘ => ‘New lsxq‘,
‘view‘ => ‘View‘,
‘view_item‘ => ‘View lsxq‘,
‘search_items‘ => ‘Search lsxq‘,
‘not_found‘ => ‘No lsxq found‘,
‘not_found_in_trash‘ => ‘No lsxq found in Trash‘,
‘parent‘ => ‘Parent lsxq‘
),
‘public‘ => true,
‘menu_position‘ => 15,
‘supports‘ => array( ‘title‘, ‘editor‘, ‘comments‘, ‘thumbnail‘ ),
‘taxonomies‘ => array( ‘‘ ),
‘menu_icon‘ => plugins_url( ‘images/image.png‘, __FILE__ ),
‘has_archive‘ => true
)
);
}

对 register_post_type 这个函数发出声明,它就为新的文章类型做好了各种管理功能。这个函数包括两个参数:第一个是定义了自定义文章类型的名字 ;第二个是一个数组,用来定义新的自定义文章类型的属性。

第一个参数很简单,大家自己领悟。这里简单说下地位个参数:

‘public‘ => true 决定该文章类型在管理后台和前端的可见性
‘menu_position‘ => 5 决定该文章类型菜单的位置
‘supports‘ => array( ‘title‘, ‘editor‘, ‘comments‘, ‘thumbnail‘) 决定自定义文章类型的功能
‘taxonomies‘ => array( ‘‘ ) 创建自定义分类,这里没有定义。
‘menu_icon‘ => plugins_url( ‘image.png‘, __FILE__ ) 显示管理菜单的图标,图标文件放在和插件同一目录,为16*16像素
‘has_archive‘ => true 启用自定义文章类型的存档功能

请访问 register_post_type 了解更多关于该函数的参数细节。

function comment_mail_notify($comment_id) {
define(‘MAIL_SMTP‘, ‘smtp.exmail.qq.com‘); //smtp服务器
define(‘MAIL_PORT‘, 25); //smtp端口
define(‘MAIL_SENDEMAIL‘, ‘[email protected]‘); //发送邮件帐号
define(‘MAIL_PASSWORD‘, ‘123456‘); //发送邮件密码
$admin_notify = ‘1‘;
$admin_email = get_bloginfo (‘admin_email‘);
$comment = get_comment($comment_id);
$comment_author_email = trim($comment->comment_author_email);
$parent_id = $comment->comment_parent ? $comment->comment_parent : ‘‘;
global $wpdb;
if ($wpdb->query("Describe {$wpdb->comments} comment_mail_notify") == ‘‘) $wpdb->query("ALTER TABLE {$wpdb->comments} ADD COLUMN comment_mail_notify TINYINT NOT NULL DEFAULT 0;");
if (($comment_author_email != $admin_email && isset($_POST[‘comment_mail_notify‘])) || ($comment_author_email == $admin_email && $admin_notify == ‘1‘)) $wpdb->query("UPDATE {$wpdb->comments} SET comment_mail_notify=‘1‘ WHERE comment_ID=‘$comment_id‘");
$notify = $parent_id ? ‘1‘ : ‘0‘;
$spam_confirmed = $comment->comment_approved;
if ($parent_id != ‘‘ && $spam_confirmed != ‘spam‘ && $notify == ‘1‘) { $wp_email = ‘[email protected]‘ . preg_replace(‘#^www\.#‘, ‘‘, strtolower($_SERVER[‘SERVER_NAME‘])); $to = trim(get_comment($parent_id)->comment_author_email); $subject = ‘你在‘ . get_option("blogname") . ‘回复被关注啦~‘;
$message = ‘
<div style="width: 502px; height: auto; margin-bottom: 50px; margin-left: auto; margin-right: auto; font-size: 13px; line-height: 14px;">
<div style="width: 502px; margin-top: 10px;">
<div style="font-size: 16px; color: #373737; text-align: center;">‘.get_bloginfo("name").‘</div>
<div style="font-size: 15px; color: #f0f7eb; padding: 9px; margin-top: 20px; overflow: hidden; background: #299982; padding-left: 30px; padding-right: 40px;">你在 ‘. get_the_title($comment-&gt;comment_post_ID) .‘ 的评论有了回复:</div>
</div>
<div style="width: 420px; margin-top: 30px; padding: 0 40px 20px; border-left: 1px dashed #299982; border-right: 1px dashed #299982; color: rgba(0,0,0,0.7); background: #f9f9f9; overflow: hidden;">
<div class="one origin" style="border: 1px solid #EEE; overflow: auto; padding: 10px; margin: 1em 0;"><span style="color: #299982;">‘. trim(get_comment($parent_id)-&gt;comment_author) .‘</span>:‘. trim(get_comment($parent_id)-&gt;comment_content) .‘</div>
<div class="one reply" style="border: 1px solid #EEE; overflow: auto; padding: 10px; margin: 1em 0 1em 60px;"><span style="color: #299982;">‘. trim($comment-&gt;comment_author) .‘</span>:‘. trim($comment-&gt;comment_content) .‘</div>
<p style="margin-bottom: 10px;">点击<a href="‘ . htmlspecialchars(get_comment_link($parent_id)) . ‘ style=">查看完整内容</a></p>
<p style="margin-bottom: 10px;">(此邮件由系统发出,无需回复.)</p>
</div>
</div>

时间: 2024-10-19 06:51:48

WordPress使用自定义文章类型实现任意模板的方法和怎么做邮件回复的相关文章

wordpress自定义文章类型public参数说明

wordpress创建自定义文章类型函数register_post_type的public参数有点难以搞明白,该参数在官网的说明中说: public (boolean) (optional) Whether a post type is intended to be used publicly either via the admin interface or by front-end users. Default: false 'false' - Post type is not intend

wordpress自定义文章类型capability_type和capabilities参数说明

在wordpress中关于用户权限有三个词:Role.Capabilities.User Levels分别是角色.权限.用户级别的意思,在前面后台制作教程中创建后台菜单的时候提到过有个参数是填写一个Capabilities,但是很多人填写的是role喝user levels. 在wordpress中role-角色很容易理解,就是管理员.订阅者之类的.对于用户层级,wordpress将用户分成了从0到10共11级别,0为最低,10最高,管理员Administrator就是10级别的,具有最高权限,

wordpress自定义文章类型描述信息description的使用

上节教程中我们添加了一个自定义文章类型,配置使用了lablse参数,这里继续讲解使用其它的参数. 先看description,这个参数是对新创建的文章类型的一个简短描述,添加之后后台.前台都没有显示的,到现在也没看到有具体使用到这个description参数的实例,但是我用不上不代表别人用不上,要输出某文章类型的描述信息,首先得获取该文章类型对象: $obj = get_post_type_object( 'book' ); echo $obj->description; 这样即可输出我们在上一

Wordpress 自定义文章类型添加 Categoried、Tags

默认情况下 ,自定义文章类型没有分类和标签属性,需要通过 register_taxonomy_for_object_type 手动注册文章分类和标签,可以通过在 functions.php 或插件中添加如下代码: add_action( 'init', 'sk_add_category_taxonomy_to_events' ); /** * Link `e4gf_events` CPT to categories and tags taxonomies */ function sk_add_c

dedecms:自定义文章文件名生成目录形式的方法

在DEDECMS中,发布文章时可以自定义文件名,生成譬如:xxx.com/a/zidingyi.html 的URL文件 然而如果想将文章生成为目录形式呢?譬如:xxx.com/a/zidingyi/index.html 只需要简单一步即可搞定. 涉及文件: include/helpers/channelunit.helper.php  189行 $articleRule = dirname($articleRule).'/'.$filename.$GLOBALS['cfg_df_ext']; 改

让WordPress不同的分类目录的文章调用不同的模板

近日,因为网站建设的需要,在没有使用自定义文章类型的情况下,使用不同的分类目录里的文章调用不同的模板,作为注册wordpress大学的见面礼. 首先在function.php里,添加如下代码: //获取并输入某个分类的子分类 function post_is_in_descendant_category( $cats, $_post = null ) { foreach ( (array) $cats as $cat ) { // get_term_children() accepts inte

WordPress自定义文章页面模板

如果想让某个分类的文章页面样式有别于其它分类,我们可以使用自定义的模板的方法实现.例如,我们准备让名称为 WordPress 的分类文章使用有别于其它分类的模板样式, 首先在所用主题根目录新建一个名称 single-wordpress.php的模板文件.将以下代码片段添加到您的当前主题的 functions.php 文件: 1 add_action('template_include', 'load_single_template'); 2 function load_single_templa

wordpress进阶教程(一):wordpress文章类型

对于所有独立的单页面内容,例如wordpress的文章.页面.它们都属于wordpress的一种类型的文章.wordpress"注册"一种新的文章类型使用的函数是:register_post_type(),打开你的wordpress的include文件夹下面的post.php文件.看第一个函数create_initial_post_types,里面调用了几次register_post_type函数,例如: register_post_type( 'post', array( 'labe

类模板,多种类型的类模板,自定义类模板,类模板的默认类型,数组的模板实现,友元和类模板,友元函数,类模板与静态变量,类模板与普通类之间互相继承,类模板作为模板参数,类嵌套,类模板嵌套,类包装器

 1.第一个最简单的类模板案例 #include "mainwindow.h" #include <QApplication> #include <QPushButton> #include <QLabel> template<class T> class run { public: T w; void show() { w.show(); } void settext() { w.setText("A"); }