- Contributing to WordPress
- Contributing to WordPress Core with code
- Trac
- Patches
- Version control
- Local Installation
- npm
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 | |
class DX_RSS_Feed { | |
public function __construct() { | |
add_filter( 'the_excerpt_rss', array( $this, 'featured_image_in_rss_feed' ) ); | |
add_filter( 'the_content_feed', array( $this, 'featured_image_in_rss_feed' ) ); | |
} | |
/** | |
* Adds the post's featured image to the RSS feed |
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://cssbattle.dev/play/109 | |
<div class="a"> | |
<div class="b"></div> | |
<div class="b"></div> | |
<div class="b"></div> | |
<div class="b"></div> | |
</div> | |
<div class="a"> | |
<div class="b"></div> |
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
define( 'WP_DEBUG', true ); | |
error_reporting( E_ALL ); | |
ini_set( 'display_errors', 'yes' ); | |
define( 'FS_METHOD', 'direct' ); // Allows you to upload/update themes/plugins/core from your localhost | |
define( 'WP_DEBUG_LOG', true ); | |
define( 'SCRIPT_DEBUG', true ); | |
define( 'MEDIA_TRASH', true ); // Enable the "Trash" Feature for Media Files | |
define( 'DISALLOW_FILE_EDIT', true ); // Disable theme/plugin editor |