Skip to content

Instantly share code, notes, and snippets.

View biswajitpaul01's full-sized avatar
🎯
Focusing

Biswajit Paul biswajitpaul01

🎯
Focusing
View GitHub Profile
@biswajitpaul01
biswajitpaul01 / wp-admin-add-posts-state.php
Created July 26, 2019 07:27 — forked from martijn94/wp-admin-add-posts-state.php
Snippet to add post state to a WordPress page
<?php
//======================================================================
// Add post state to the projects page
//======================================================================
add_filter( 'display_post_states', 'ecs_add_post_state', 10, 2 );
function ecs_add_post_state( $post_states, $post ) {
@biswajitpaul01
biswajitpaul01 / enqueue-block-js-and-css-plugin.php
Created March 28, 2019 19:22 — forked from zgordon/enqueue-block-js-and-css-plugin.php
Example plugin file for enqueueing Gutenberg block JS and CSS
<?php
/**
* Enqueue block editor JavaScript and CSS
*/
function jsforwpblocks_editor_scripts() {
// Make paths variables so we don't write em twice ;)
$blockPath = '/assets/js/blocks.js';
$editorStylePath = '/assets/css/blocks.editor.css';