STEP-1: Sign in to your google cloud console. Email verification Mobile number verification Address and account details verification Received mail after step 3: Next step is to verify the account. Mail received After verification: STEP-2: Create the first project Select new project Clicked → ‘ Go to your Console ’ Created a new project ‘My Trial… Continue reading Steps to Host WordPress on GCP
Category: Wordpress
How to Fix FTP Permission Errors on Google Cloud
First, Give permission to the admin in GCP. http://jobinandjismi.in/how-to-add-permissions-for-the-user-in-iam-in-gcp/ Basically, we need to follow 6 steps to rectify the issue. They are: Identify Error Permission denied errors occur when you don’t have the required permissions to make changes to a file that you’re trying to edit over FTP. 2. Connect to VM InstanceTo fix the problem,… Continue reading How to Fix FTP Permission Errors on Google Cloud
How to add permissions for the user in IAM in GCP
Some Basic Roles need to add for getting permission to access the GCP resources. Cloud Asset Owner Data Labeling Service Admin DataBase Migration Admin Data Pipelines Admin Cloud DataStore Import Export Admin Cloud FileStore Editor IAP Policy Admin IAP Settings Admin Owner (This access can only given by GCP account owner) Cloud Run Admin Service… Continue reading How to add permissions for the user in IAM in GCP
Blog related WP-functions
Some useful WordPress functions used for Blog Development: get_post_permalink() To get the post link get_permalink($post->ID)To get the corresponding Blog link get_the_post_thumbnail_url(get_the_ID())To get the post thumbnail image URL get_the_title()To get the Title of the Post get_the_excerpt()To get the expert Text
Featured Post/Sticky Post Customization in WordPress
To customize a Blog Sticky Post, we must first locate and fetch the sticky post. Steps to Fetch Sticky Post Sticky posts are setting through the option ‘Stick to the top of the blog’, which is available from the right side of the post page.Check or uncheck to set the sticky post. If we set… Continue reading Featured Post/Sticky Post Customization in WordPress
Search by Title in WordPress
The below-given script structure can be used for the implementation of Search by Title in WordPress. Reloading the section to avoid page reload.
How to calculate Average Post Read Time
About Research on Plugin We can add a plugin for estimating Post Reading Time in WordPress. The easiest way to add estimated post-reading time is by using the Read Meter plugin. It’s a free WordPress plugin that helps you show the reading time and progress bar on your website. First, activate the Read Meter plugin.… Continue reading How to calculate Average Post Read Time
How to Filter Post List according to category given
How to fetch Post category in a WP Page Template Filter Post List according to category given
How to list posts in a Blog page on a particular criteria
To Fetch and display all the posts in a page.(From the current scenario, it displays title and tag name.) Filter according to tag slug To list only three items
How to Fetch Post Data and Add Post Custom field in WP.
Possibility to fetch post data to a page template in WP Instead of fetching the content of a post to a template page, I discovered how to build up the post type’s common template. As a result, we may make a post using the same template. This procedure is comparable to making a page template.… Continue reading How to Fetch Post Data and Add Post Custom field in WP.