| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ===> Comenzi consola <=== | |
| // comenzi consola | |
| https://ss64.com/osx/ //utils | |
| // List of Command Line Commands | |
| https://www.codecademy.com/article/command-line-commands | |
| ______________ work files ______________ | |
| -> Listarea Foldere-lor, files, work with files <- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Contact form | |
| Контактная форма | |
| ------------------------------ | |
| / General messages/ | |
| "Check your inbox or spam folder to confirm your subscription." | |
| - "Vă rugăm să verificați dosarul Inbox sau Spam pentru a vă confirma abonamentul." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // General info | |
| https://codex.wordpress.org/Theme_Development | |
| // Core info | |
| https://wp-learner.com/wotdpress-development/wordpress-core-files-and-functions/ | |
| // Theme Handbook | |
| https://developer.wordpress.org/themes/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Theme Name (*): Name of the theme. | |
| Theme URI: The URL of a public web page where users can find more information about the theme. | |
| Author (*): The name of the individual or organization who developed the theme. Using the Theme Author’s wordpress.org username is recommended. | |
| Author URI: The URL of the authoring individual or organization. | |
| Description (*): A short description of the theme. | |
| Version (*): The version, written in X.X or X.X.X format. | |
| License (*): The license of the theme. | |
| License URI (*): The URL of the theme license. | |
| Text Domain (*): The string used for textdomain for translation. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // ------------- general info ------------- // | |
| // HTTP | |
| https://en.wikipedia.org/wiki/HTTP | |
| // List of HTTP header fields | |
| https://en.wikipedia.org/wiki/List_of_HTTP_header_fields#Request_fields | |
| // Request methods | |
| https://en.wikipedia.org/wiki/HTTP#Request_methods |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| //--- Begin Standard Theme settings ---// | |
| /** | |
| * Test Theme functions and definitions | |
| * | |
| * @link https://developer.wordpress.org/themes/basics/theme-functions/ | |
| * | |
| * @package Test_Theme | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Action for change default system settings, it work's! | |
| add_action('phpmailer_init','send_smtp_email'); | |
| function send_smtp_email( $phpmailer ) | |
| { | |
| // Define that we are sending with SMTP | |
| $phpmailer->isSMTP(); | |
| // The hostname of the mail server |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /************ Debugging ************/ | |
| https://codex.wordpress.org/Debugging_in_WordPress | |
| // in wp-config file | |
| define('WP_DEBUG', true); //Enabling WP_DEBUG will cause all PHP errors, notices and warnings to be displayed. | |
| define('WP_DEBUG_DISPLAY', true); // This should be used in conjunction with WP_DEBUG_LOG so that errors can be reviewed later. |