Skip to content

Instantly share code, notes, and snippets.

@westonruter
Last active July 29, 2018 13:33
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save westonruter/f8473159e48fbacbef9dcd6498155846 to your computer and use it in GitHub Desktop.
Save westonruter/f8473159e48fbacbef9dcd6498155846 to your computer and use it in GitHub Desktop.
<?php
/**
* Plugin Name: Customize Post Preambles
* Author: Weston Ruter, XWP
* Description: Demo plugin for Customize Posts to add a section before each post in The Loop that contains a preamble content stored in postmeta.
*
* @package CustomizePostPreambles
*/
namespace CustomizePostPreambles;
const SETTING_ID_PATTERN = '^postmeta\[(.+?)]\[(\d+)]\[preamble]$';
const FEATURE = 'preamble';
const META_KEY = 'preamble';
// Add post type support for preambles.
add_action( 'init', function() {
add_post_type_support( 'post', FEATURE );
}, 10 );
// Register the preamble postmeta.
add_action( 'customize_posts_register_meta', function ( \WP_Customize_Posts $customize_posts ) {
foreach ( get_post_types_by_support( FEATURE ) as $post_type ) {
$customize_posts->register_post_type_meta( $post_type, META_KEY, array(
'transport' => 'postMessage',
'sanitize_callback' => function( $value ) {
return wp_kses_post( $value );
},
) );
}
} );
// Inject the preamble each post in The Loop.
add_action( 'the_post', function( $post, $wp_query ) {
if ( $wp_query->is_main_query() && ! $wp_query->is_singular() && $wp_query->in_the_loop ) {
$class = sprintf( 'post-preamble post-preamble-%d', $post->ID );
?>
<section class="<?php echo esc_attr( $class ) ?>">
<?php echo wp_kses_post( get_post_meta( $post->ID, META_KEY, true ) ) ?>
</section>
<?php
}
}, 10, 2 );
// Add the editor control for the preamble.
add_action( 'customize_controls_enqueue_scripts', function() {
ob_start();
?>
<script>
wp.customize.bind( 'ready', function() {
var api = wp.customize,
metaKey = <?php echo wp_json_encode( META_KEY ) ?>,
feature = <?php echo wp_json_encode( FEATURE ) ?>,
controlLabel = <?php echo wp_json_encode( __( 'Preamble', 'customize-post-preambles' ) ) ?>;
api.section.bind( 'add', function( section ) {
var control, customizeId, postTypeObj;
if ( ! section.extended( wp.customize.Posts.PostSection ) ) {
return;
}
postTypeObj = api.Posts.data.postTypes[ section.params.post_type ];
if ( ! postTypeObj || ! postTypeObj.supports[ feature ] ) {
return;
}
customizeId = 'postmeta[' + section.params.post_type + '][' + section.params.post_id + '][' + metaKey + ']';
control = new api.controlConstructor.post_editor( customizeId, {
params: {
section: section.id,
label: controlLabel,
settings: {
'default': customizeId
}
}
} );
// Override preview trying to de-activate control not present in preview context. See WP Trac #37270.
control.active.validate = function() {
return true;
};
// Register.
api.control.add( control.id, control );
} );
} );
</script>
<?php
$js = str_replace( array( '<script>', '</script>' ), '', trim( ob_get_clean() ) );
wp_add_inline_script( 'customize-posts', $js );
} );
// Style the partial.
add_action( 'wp_print_styles', function() {
?>
<style>
section.post-preamble {
font-style: italic;
}
</style>
<?php
} );
// Dynamically register the partial when the setting is present.
add_action( 'wp_enqueue_scripts', function() {
if ( ! is_customize_preview() ) {
return;
}
ob_start();
?>
<script>
( function( api ) {
var registerPartial,
idPattern = new RegExp( <?php echo wp_json_encode( SETTING_ID_PATTERN ) ?> );
registerPartial = function( setting ) {
var ensuredPartial, partialId, postId, matches;
matches = setting.id.match( idPattern );
if ( ! matches ) {
return null;
}
postId = parseInt( matches[2] );
partialId = setting.id;
ensuredPartial = api.selectiveRefresh.partial( partialId );
if ( ensuredPartial ) {
return ensuredPartial;
}
ensuredPartial = new api.selectiveRefresh.partialConstructor.deferred( partialId, {
params: {
selector: '.post-preamble-' + String( postId ),
settings: [ setting.id ],
containerInclusive: false,
fallbackRefresh: false
}
} );
api.selectiveRefresh.partial.add( partialId, ensuredPartial );
return ensuredPartial;
};
api.each( registerPartial );
api.bind( 'add', registerPartial );
} ( wp.customize ) );
</script>
<?php
$js = str_replace( array( '<script>', '</script>' ), '', trim( ob_get_clean() ) );
wp_add_inline_script( 'customize-selective-refresh', $js );
} );
// Recognize the partial.
add_filter( 'customize_dynamic_partial_args', function( $args, $id ) {
if ( preg_match( '#' . SETTING_ID_PATTERN . '#', $id, $matches ) ) {
$post_id = $matches[2];
$args = array_merge(
false === $args ? array() : $args,
array(
'container_inclusive' => false,
'render_callback' => function() use ( $post_id ) {
echo wp_kses_post( get_post_meta( $post_id, META_KEY, true ) );
},
)
);
}
return $args;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment