Giter Club home page Giter Club logo

Comments (5)

janboddez avatar janboddez commented on August 16, 2024

Alright, I think a sort of semi-automated CW (“new blog post” or something, maybe based on tags or similar) is already possible through the current filter mechanism (but would require some custom PHP).

Let me get back to you with a code example once I’ve figured this out.

The alternative would be an extra text field for a completely “manual” CW. I was hoping to eventually rework the meta box anyway, but I might be able to something even before that happens.

from share-on-mastodon.

janboddez avatar janboddez commented on August 16, 2024

OK, so it is possible to add the following to, e.g., a functions.php file or similar.

add_filter( 'share_on_mastodon_toot_args', function( $args ) {
  $args['spoiler_text'] = 'new blog post';

  return $args;
} );

Unfortunately, it doesn't look like global $post can be used to retrieve the post title as well.

I can add an optional second argument ($post) to that filter in a next version.

from share-on-mastodon.

janboddez avatar janboddez commented on August 16, 2024

OK, so with that new parameter (not up on WP.org, yet!) you should be able to do something like:

add_filter( 'share_on_mastodon_toot_args', function( $args, $post = null ) {
  $args['spoiler_text'] = 'new blog post';

  if ( $post ) {
    $args['spoiler_text'] .= ': ' . get_the_title( $post );
  }

  return $args;
}, 10, 2 );

And then you could either modify $args['status'] or use the share_on_mastodon_status filter to modify the actual text, like change it into an excerpt + a permalink, or include tags, etc. Or you could fetch the post's tags right there and base your CW off them, and so on, and so on.

Not sure when I'll push to WP.org, maybe in a week or so. Could be in the future I add a CW setting, but it will probably be limited to static text (which you could then override using the filter).

from share-on-mastodon.

swaldman3 avatar swaldman3 commented on August 16, 2024

thanks!

from share-on-mastodon.

gloriousnoise avatar gloriousnoise commented on August 16, 2024

Thank you!

from share-on-mastodon.

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.