Coder Social home page Coder Social logo

Comments (13)

philiparthurmoore avatar philiparthurmoore commented on August 17, 2024 1

@flowdee So sorry for not getting on this. We unhooked Subtitles from Slack and I'm playing cleanup right now. Let me roll out a fix for this and push a new version of the plugin tomorrow!

from subtitles.

philiparthurmoore avatar philiparthurmoore commented on August 17, 2024 1

@flowdee Perfect, thank you. Working on adjustments today and tomorrow. This is top of the list.

from subtitles.

philiparthurmoore avatar philiparthurmoore commented on August 17, 2024 1

Thanks so much. I'll let you know when the fix is live. Should be any day now, definitely this week.

from subtitles.

philiparthurmoore avatar philiparthurmoore commented on August 17, 2024

@flowdee Sorry for the late follow-up. Do you happen to have the specific PHP notice you're receiving and does it happen only when breadcrumbs in Yoast are turned on?

from subtitles.

flowdee avatar flowdee commented on August 17, 2024

Yes it only happens with enabled breadcrumbs.

[01-Apr-2018 08:56:51 UTC] PHP Notice: wp_seo_get_bc_title is <strong>deprecated</strong> since version WPSEO 5.8! Use wpseo_breadcrumb_single_link_info instead. in /wp-includes/functions.php on line 4090

from subtitles.

flowdee avatar flowdee commented on August 17, 2024

Happy to hear 👍

Right now I'm using a hook in all of my projects to prevent deprecated notices from showing up but of course this is only a temporary solution 😄

from subtitles.

philiparthurmoore avatar philiparthurmoore commented on August 17, 2024

Would you mind sharing your hook? I don't want to ruin your adjustments by pushing a wrong update to the plugin.

from subtitles.

flowdee avatar flowdee commented on August 17, 2024

add_filter( 'deprecated_hook_trigger_error', '__return_false' );

But it's hiding all deprecated notices, not only from your plugin. That's why I don't want to use it forever but right now it's better than a bloated log file 😄

from subtitles.

philiparthurmoore avatar philiparthurmoore commented on August 17, 2024

https://gist.github.com/robneu/7743769#gistcomment-2280213

from subtitles.

philiparthurmoore avatar philiparthurmoore commented on August 17, 2024

https://yoast.com/yoast-seo-5-8/

from subtitles.

philiparthurmoore avatar philiparthurmoore commented on August 17, 2024

2018-04-07_20-31-11

https://wordpress.org/plugins/wordpress-seo/advanced/

from subtitles.

philiparthurmoore avatar philiparthurmoore commented on August 17, 2024

Working undocumented pseudocode. Will tidy this up tomorrow.

add_filter( 'wpseo_breadcrumb_single_link_info', array( &$this, 'plugin_compat_wordpress_seo_new' ) );

public function plugin_compat_wordpress_seo_new( $breadcrumb_text ) {
	// check if in loop
	$in_the_loop = (bool) in_the_loop();
	if ( ! $in_the_loop ) {
		return $breadcrumb_text;
	}
	// subtitle
	$post_subtitle = get_the_subtitle(); // get subtitle
	$post_subtitle_length = (int) strlen( $post_subtitle ); // get subtitle length
	$post_subtitle_length_neg = -1 * $post_subtitle_length;
	// title
	$post_title = $breadcrumb_text['text']; // get post title
	$post_title_length = (int) strlen( $post_title ); // get post title length
	// remove subtitle from breadcrumb title
	if ( ( $post_title == $post_subtitle ) || ( '' == $post_title ) ) {
		return $breadcrumb_text;
	}
	$post_title = substr( $post_title, 0, $post_subtitle_length_neg );
	$post_title = apply_filters( 'compat_wordpress_seo', $post_title );
	$reconstructed_title = $post_title . $post_subtitle;
	if ( $reconstructed_title == $breadcrumb_text['text'] ) {
		$breadcrumb_text['text'] = $post_title;
		return $breadcrumb_text;
	}
	return $breadcrumb_text;
}

from subtitles.

philiparthurmoore avatar philiparthurmoore commented on August 17, 2024

Noting that this will require a plugin version bump to 4.0.0.

from subtitles.

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.