Admin wp_capabilities
wp_user_level
10
a:1:{s:13:"administrator";b:1;}
Contributor wp_capabilities
wp_user_level
1
Key/Command | Description |
---|---|
Tab | Auto-complete files and folder names |
Ctrl + A | Go to the beginning of the line you are currently typing on |
Ctrl + E | Go to the end of the line you are currently typing on |
Ctrl + U | Clear the line before the cursor |
Ctrl + K | Clear the line after the cursor |
Ctrl + W | Delete the word before the cursor |
Ctrl + T | Swap the last two characters before the cursor |
// Útil para filtros de Gutenberg como "allowed_block_types" | |
archives | |
audio | |
button | |
categories | |
code | |
column | |
columns | |
coverImage |
<?php | |
/** | |
* Plugin Name: Custom API | |
* Plugin URI: http://chrushingit.com | |
* Description: Crushing it! | |
* Version: 1.0 | |
* Author: Art Vandelay | |
* Author URI: http://watch-learn.com | |
* YouTube URI: https://www.youtube.com/watch?v=C2twS9ArdCI | |
*/ |
// First commit any outstanding code changes, and then, run this command: | |
git rm -r --cached . | |
// This removes any changed files from the index(staging area), then just run: | |
git add . | |
// Commit | |
git commit -m "Remove .gitignore cached files" |
<?php | |
$currentlang = get_bloginfo('language'); | |
if($currentlang=="en-CA"): | |
?> | |
<?php elseif($currentlang=="fr-CA"): ?> | |
<?php endif; ?> | |
or to avoid limitations or issues with "en-CA" "en-GB" "en-US" "en-UK" "fr-FR" etc: |