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
/assets/banner-772x250.(jpg|png) | |
/assets/banner-1544x500.(jpg|png) | |
/assets/banner-1880x609.(jpg|png) | |
/assets/icon-128x128.(gif|jpg|png) | |
/assets/icon-256x256.(gif|jpg|png) |
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
> This is boxed text |
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
https://www.youtube.com/watch?v=1234567890 |
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
[youtube https://www.youtube.com/watch?v=1234567890] |
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
> This is multi-line boxed text | |
> This is multi-line boxed text | |
> This is multi-line boxed text |
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
<img src="http://example.com/image.jpg" alt="An amazing image" /> |
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
=== WPorb: Awesome Plugin === | |
Plugin Name: Awesome Plugin (WPorb) | |
Plugin URI: https://wporb.com/awesome-plugin/ | |
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
This is unordered list: | |
* Candy. | |
* Gum. | |
* Booze. | |
and so is this: | |
+ Candy. | |
+ Gum. | |
+ Booze. |
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
1. Red | |
2. Green | |
3. Blue | |
Output: | |
<ol> | |
<li>Red</li> | |
<li>Green</li> | |
<li>Blue</li> |
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
//Check if it is author page | |
function remove_author_pages_page() { | |
if ( is_author() ) { | |
//trigger 404 page | |
global $wp_query; | |
$wp_query->set_404(); | |
status_header( 404 ); | |
} | |
} |