- First, You must Star this repository. (* ̄︶ ̄)
- Need to install and running WordPress above version 4.4 ,and open REST API.
- modify
src/utils/api.js
file, change youre config. 「E.g: site url, site language, site protocol etc.」
- After vueWPress 0.23 release, you need to install a plugin JWT Authentication for WP-API, Can be downloaded via background plugin search or check here
4.1 Modify the wp-config.php file in Wordpress root
4.1.2 Find:
define('NONCE_SALT'
4.1.3 Add the following to the line under
define('NONCE_SALT'
define('JWT_AUTH_SECRET_KEY', 'you-64-secret-key');
#the random key here https://api.wordpress.org/secret-key/1.1/salt/
define('JWT_AUTH_CORS_ENABLE', true);
4.1.4
you-64-secret-key
Is a 64-bit random key, more: check here
# install dependencies
npm install
# serve with hot reload at localhost:8088
npm run start
# build for development
npm run dev
# build for production
npm run build
- Show home on the home page. jump 「ver: 0.1」
- Show post on the article page. jump 「ver: 0.1」
- Show topic on the topic page. jump 「ver: 0.12」
- Show topic detail on the detail page. 「ver: 0.12」
- Show tags on the tags page. jump 「ver: 0.16」
- Show tag detail on the detail page. 「ver: 0.16」
- Show All media on the gallery page. 「ver: 0.16」
- Show All comment on the comments page. 「ver: 0.19」
- Show article on the articles page. jump 「ver: 0.23」
- Added comments on article page. jump 「ver: 0.31」
- Increase article publishing capabilities. jump 「ver: 0.31」
- Added user center to display nicknames, avatars, and logouts. jump 「ver: 0.31」
- Added login and registration functions. jump 「ver: 0.31」
- More features are in development ...