Saturday, November 9, 2019

How to disable Auto Save in WordPress

To deactivate Auto Save in all post, simply insert the following code into your ‘functions.php’ file in your theme directory or in your plugin file:

Wednesday, September 18, 2019

CSS :active Selector

Example

Select and style the active link:
a:active {
  background-color: yellow;
}

HTML hidden Attribute

Example

A hidden paragraph:

<p hidden>This paragraph should be hidden.</p>