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 | |
| /* | |
| Plugin Name: Twitter Schema | |
| Plugin URI: https://digitalblender.co | |
| Description: Twitter Schema | |
| Author: Prahlad Yeri | |
| Version: .1 | |
| Author URI: https://prahladyeri.com/blog | |
| */ |
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 | |
| namespace App; | |
| use Carbon_Fields\Field; | |
| use Carbon_Fields\Block; | |
| Block::make( __( 'Gutenberg Block' ) ) | |
| ->set_icon( 'format-chat') | |
| ->add_fields( array( | |
| Field::make( 'rich_text', 'text', __( 'text', 'my-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
| Git commands Cheat Sheet | |
| Initialize a new git repository: | |
| git init | |
| Set configuration values for your username and email: | |
| git config --global user.name <your-name> | |
| git config | |
| --global user. email <your-email> | |
| Clone a repository: |
OlderNewer