GithubHelp home page GithubHelp logo

Comments (1)

simison avatar simison commented on August 16, 2024

This snippet of code sets the default to "do not send":

function register_meta_args_filter_jetpack_dont_send_post_by_default( $args, $defaults, $object_type, $meta_key ) {
	if ( $meta_key !== '_jetpack_dont_email_post_to_subs' ) {
		return $args;
	}

	$args['default'] = 1;

	return $args;
}
add_filter( 'register_meta_args', 'register_meta_args_filter_jetpack_dont_send_post_by_default', 10, 4 );

Now when you hit publish on new posts:

Screenshot 2024-06-21 at 15 44 45

If we would want to add more straightforward filter, we'd add it here:

register_post_meta(
'post',
META_NAME_FOR_POST_DONT_EMAIL_TO_SUBS,
array(
'default' => false,

from jetpack.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.