之前在浏览帖子的时候看到了 Laravel 和 WordPress 集成的文章,在一个项目里发现使用这种结构可以进行快速的开发,就采用了这种集成方式。
这里就涉及到了一个可以直接从 WordPress 数据库获取数据的开源项目 Corcel:
https://github.com/corcel/corcel
安装完 Laravel 和 WordPress 后,再集成 Corcel,省余的开发部分就是修改 WordPress 原生功能和使用 Laravel 进行数据查询,可以快速开发一个项目。
安装 Laravel 和 WordPress 并集成 Corcel 时,使用 Docker 安装和直接安装,过程是不一样的,注意区别。
根据百科描述: WordPress 是使用 PHP 语言开发的博客平台,用户可以在支持 PHP 和 MySQL 数据库的服务器上架设属于自己的网站。也可以把 WordPress 当作一个内容管理系统(CMS)来使用。
首先使用 WordPress 来开发 CMS 后台,遇到了不少问题,写篇文章记录一下。
目前2021最新版的 WordPress,文章编辑器使用的是可拖拽的块级编辑器,但是相对于使用很长时间的文章编辑器还是不习惯,目前 WordPress 还提供了旧版编辑器的恢复方法:
安装插件 Classic Editor。
在安装插件时,WordPress 会弹出 ftp 设置对话框,想要不显示,可以修改 wp-config.php,添加参数:
define("FS_METHOD", "direct");
修改文件系统方式为直接。
新部署的系统安装完成后,经常会发现 WordPress 限制附件上传大小为2M,这个是由 PHP 中的配置控制的。
修改 php.ini 配置文件:
执行 php -ini,查找到 php.ini 的文件路径
找到具体路径后使用vi进行编辑,vi php.ini
然后使用 :?words 命令查找到以下几个参数,使用 i 进行相关的修改。
file_uploads = On; #打开文件上传选项
upload_max_filesize = 2M; #上传文件上限
post_max_size = 8M; #post上限
然后使用 :wq 保存后,重启当前的服务后生效。
新手在 WordPress 后台看到“写文章”和“新建页面”的界面几乎一样,不清楚文章和页面的区别在哪里,不清楚什么时候使用文章功能,什么时候使用页面功能。
这里简单介绍一下:
1、相同点。
都可以发布文章,“文章模板”和“页面模板”,都可以设计相同和不同的版面布局。
2、不同点。
文章是有分类的,可按设定的目录进行归类,有分类页面全部展示,文章和目录是一种归属关系。
页面并不能被分类,但是它们可以有层级关系,可将页面附属在另一个页面之下。
3、建议。
如果经常更新同一类形的文章,如“新闻”,建议你用文章功能,并进行分类;
如果发布的是特定的页面,没有分类,如 “关于我们”,“联系光们”,建议你用“页面”功能。
经过以上介绍,大部分人在开发时就会对自己使用什么类型有了自己的选择了,下面介绍一下自定义文章和自定义页面,因为我项目中使用自定义页面最多,这里着重介绍一下自定义页面。
// Register Custom Post Type
function custom_post_type() {
$labels = array(
'name' => _x( 'Post Types', 'Post Type General Name', 'text_domain' ),
'singular_name' => _x( 'Post Type', 'Post Type Singular Name', 'text_domain' ),
'menu_name' => __( 'Post Types', 'text_domain' ),
'name_admin_bar' => __( 'Post Type', 'text_domain' ),
'archives' => __( 'Item Archives', 'text_domain' ),
'attributes' => __( 'Item Attributes', 'text_domain' ),
'parent_item_colon' => __( 'Parent Item:', 'text_domain' ),
'all_items' => __( 'All Items', 'text_domain' ),
'add_new_item' => __( 'Add New Item', 'text_domain' ),
'add_new' => __( 'Add New', 'text_domain' ),
'new_item' => __( 'New Item', 'text_domain' ),
'edit_item' => __( 'Edit Item', 'text_domain' ),
'update_item' => __( 'Update Item', 'text_domain' ),
'view_item' => __( 'View Item', 'text_domain' ),
'view_items' => __( 'View Items', 'text_domain' ),
'search_items' => __( 'Search Item', 'text_domain' ),
'not_found' => __( 'Not found', 'text_domain' ),
'not_found_in_trash' => __( 'Not found in Trash', 'text_domain' ),
'featured_image' => __( 'Featured Image', 'text_domain' ),
'set_featured_image' => __( 'Set featured image', 'text_domain' ),
'remove_featured_image' => __( 'Remove featured image', 'text_domain' ),
'use_featured_image' => __( 'Use as featured image', 'text_domain' ),
'insert_into_item' => __( 'Insert into item', 'text_domain' ),
'uploaded_to_this_item' => __( 'Uploaded to this item', 'text_domain' ),
'items_list' => __( 'Items list', 'text_domain' ),
'items_list_navigation' => __( 'Items list navigation', 'text_domain' ),
'filter_items_list' => __( 'Filter items list', 'text_domain' ),
);
$args = array(
'label' => __( 'Post Type', 'text_domain' ),
'description' => __( 'Post Type Description', 'text_domain' ),
'labels' => $labels,
'supports' => false,
'taxonomies' => array( 'category', 'post_tag' ),
'hierarchical' => false,
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'menu_position' => 5,
'show_in_admin_bar' => true,
'show_in_nav_menus' => true,
'can_export' => true,
'has_archive' => true,
'exclude_from_search' => false,
'publicly_queryable' => true,
'capability_type' => 'page',
);
register_post_type( 'post_type', $args );
}
add_action( 'init', 'custom_post_type', 0 );
官网地址:
https://developer.wordpress.org/reference/hooks/save_post
laravel框架加载自定义函数/类文件/文件目录:
一般会在项目 app 目录下新建一个目录,如Library或Helper,或者其他更适合自定义函数的目录,定义好自己的公用函数。
修改 composer.json 文件:
"autoload": {
"files": [
"app/Lib/video.php"
]
},
执行:
composer dump-autoload
执行命令后,app目录中的目录和文件由Composer自动加载到项目中,项目中其他位置就可以直接调用了。