• Home
  • WordPress
    • How To
    • Plugins
    • Themes
      • Genesis
      • Themify
      • Mysite myway
    • Security
    • Developer
    • Teaching
    • Conference
    • Chat
  • Blog
  • About
  • Freelance
    • Plugins
    • Teaching
    • Need help?
    • CV og ref.
  • Contact

Easy Web Design Tutorials

WordPress Tutorials and more

  • Home
  • WordPress
    • How To
    • Plugins
    • Themes
      • Genesis
      • Themify
      • Mysite myway
    • Security
    • Developer
    • Teaching
    • Conference
    • Chat
  • Blog
  • About
  • Freelance
    • Plugins
    • Teaching
    • Need help?
    • CV og ref.
  • Contact

19 June - 2017 By Paal Joachim 1 Comment
Last updated on: September 9, 2020

Some developer resources that I find useful.

codex.wordpress.org 
generatewp.com
wp-hasty.com

Lukes awesome WP developer tools list:
github.com/lukecav/awesome-wp-developer-tools

Additional resources:
asphaltthemes.com/wordpress-developer-resources

I will add on to the list when I came across additional resources.

When I need to know the host of a specific web site.
www.whoishostingthis.com/
hostadvice.com/tools/whois/

Boiler Plates:
designyourway.net/blog/wp/wordpress-boilerplates

smashingmagazine.com/2015/06/wordpress-custom-page-templates

Tools that look useful:
localsync.io

 

One language in the backend and one in the frontend:
gist.github.com/scarstens/11378999

   // setup one language for admin and the other for theme
     // must be called before load_theme_textdomain()

     function set_my_locale($locale) {
          $locale = ( is_admin() ) ? "en_US" : "it_IT";
          setlocale(LC_ALL, $local );
          return $locale;
     }
     add_filter( 'locale', 'set_my_locale' );

 

www.philowen.co/blog/add-new-admin-user-to-wordpress-via-phpmyadmin/

 

Create a simple 404.php file to redirect to front page.

Create a 404.php file containing:

<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: ".get_bloginfo('url'));
exit();
?>

Place the file into your child theme root folder. Test it out by going to the domain name and /thensomething. If it is not an actual page or post it will redirect to the front page.  www.wpbeginner.com/wp-tutorials/how-to-redirect-your-404-page-to-the-home-page-in-wordpress

Lost your user info and do not have access to the e-mail:
www.tipsandtricks-hq.com/create-a-wordpress-admin-user-for-a-wordpress-site-via-mysql-6649

Here is a JQuery cheat sheet.

———-

Check my other articlse Useful site helper tools  as well as the JavaScript resources.

Share this:

  • Email

Categories: Developer, WordPress

Paal Joachim Romdahl

I enjoy teaching and creating tutorials. As well creating web sites.
I help people gain WordPress knowledge through my easy to follow tutorials and specialized training. Contact me for more information on how I can improve your WordPress skills and to help get your web site quickly up and running.

Comments

  1. خرید تحقیق says

    2 September - 2018

    Excellent. Actually your content is useful

    Reply

Leave a Comment Cancel reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

© 2021 · By Easy Web Design Tutorials · Built on the Genesis Framework · WordPress · Log in · ⇪

loading Cancel
Post was not sent - check your email addresses!
Email check failed, please try again
Sorry, your blog cannot share posts by email.