ionic 5 news app For WordPress
  • Ionic 5 News, Blog App For WordPress
  • SETUP IONIC NEWS APP FOR WORDPRESS
  • INSTALLATION OF PLUGINS
  • CONNECT APP WITH WORDPRESS DOMAIN
  • ONESIGNAL CONFIGURATION
  • FIREBASE SENDER ID
  • CHANGE APP NAME, LOGO, SPLASH SCREEN, ICON ETC.
  • FINAL / RELEASE BUILD
  • CHANGE FEATURE BANNER POSTS
Powered by GitBook
On this page

Was this helpful?

INSTALLATION OF PLUGINS

PreviousSETUP IONIC NEWS APP FOR WORDPRESSNextCONNECT APP WITH WORDPRESS DOMAIN

Last updated 4 years ago

Was this helpful?

Installation Plugin

  • JWT Authentication for WP REST API Plugin: –

  • WP REST User Plugin: –

JWT Authentication for WP REST API Plugin: –

Edit your .htaccess file by adding the following:

RewriteEngine on
RewriteCond %{HTTP:Authorization} ^(.*)
RewriteRule ^(.*) - [E=HTTP_AUTHORIZATION:%1]
SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1

To add the secret key, edit your wp-config.php file and add a new constant called JWT_AUTH_SECRET_KEY.

define('JWT_AUTH_SECRET_KEY', 'your-top-secret-key'); // any top secret key
https://wordpress.org/plugins/jwt-authentication-for-wp-rest-api/
https://wordpress.org/plugins/wp-rest-user/