What does this mean in my website console: “JQMIGRATE: Migrate is installed, version 1.4.1 jquery-migrate.min.js?ver=1.4.1:2 “

My website gets “No Secure” and “no https”. After I tried to fix this problem, and I change all the http: domain name to https:domain name, and I update the WordPress, my website console shows this: “JQMIGRATE: Migrate is installed, version 1.4.1 jquery-migrate.min.js?ver=1.4.1:2 “ What does this mean?

Not Authorized to View This Page

Reset the URLs to their http version. You can do this via PHPMYADMIN in the wp_options table by locating wp_home and wp_siteurl and adding the http:// version of your website or by adding constants in wp-config.php: Add these two lines to your wp-config.php, where “example.com” is the correct location of your site. define( ‘WP_HOME’, ‘http://example.com’ ); define( ‘WP_SITEURL’, ‘http://example.com’ ); Reference: https://wordpress.org/support/article/changing-the-site-url/#edit-wp-config-php … Read more

Use Notepad++ as HEX-Editor

It seems to me you tried to install a hex editor and ended up in the wrong tool (Plug-In) Converter (ASCII -> HEX) as mentioned in your question above. The installation process of the HexEditor is somewhat confusing because it is currently available only in the Plugins Admin for the 32-bit version. A simple solution … Read more

Use Notepad++ as HEX-Editor

It seems to me you tried to install a hex editor and ended up in the wrong tool (Plug-In) Converter (ASCII -> HEX) as mentioned in your question above. The installation process of the HexEditor is somewhat confusing because it is currently available only in the Plugins Admin for the 32-bit version. A simple solution … Read more

Adding WordPress Header and Footer to a PHP Script

If you want to add WordPress Header & Footer in a PHP script flow those stapes: Step-1: Upload Your PHP project in the WordPress root folder. Step-2: Added this code on the PHP script header: Well Done! Now you can use all wp functions in your PHP project, like wp_head(), wp_footer(), get_header(), get_footer(), and more.

How to count the current posts terms WordPress

wp_count_terms the function counts terms in a given taxonomy (e.g. total number of categories, total number of tags). To get what you want, get the terms for the post and just count them count( wp_get_post_terms( $post_id, $taxonomy, $args ) );. Or, assuming that in real life you might need those terms later: count() function help you to … Read more