Support » Plugin: The SEO Framework » About: Feature Suggestions

  • Plugin Author Sybre Waaijer

    (@cybr)


    Hi!

    Do you have any feature suggestions? Let everyone know by opening a GitHub issue 🙂

    If your feature suggestion is already listed, do let us know your thoughts! This can be done by adding your reaction (top right of issue entry) or by leaving a comment. This way we know what to prioritize and work on ASAP.

    Thank you so much 🙂 Cheers!

Viewing 12 replies - 1 through 12 (of 12 total)
  • Hi Sybre,

    Merry Christmas and happy New Year!

    How about a rel=”author” attribute link?

    I thinks it’s already implemented on the plugin /like\/that\ but there’s no link.

    Cheers,

    George

    Plugin Author Sybre Waaijer

    (@cybr)

    Hi George,

    Likewise! 🙂

    That’s already planned, in other ways (Schema.org). Because the rel="author" tag is no longer supported.
    See GitHub issue #21 (although misnamed).

    Happy New Year! 🙂

    Hi there,

    Do you plan to add an automatic redirection to the parent post for attachment page? I was previously using All In One SEO and I really lack this feature. With a such feature, people who finds my images on google images & co will imediately be redirected to the post where the attachment is attached, which is like mandatory for me.

    Cheers.

    • This reply was modified 4 months, 2 weeks ago by moxymore.
    • This reply was modified 4 months, 2 weeks ago by moxymore.
    Plugin Author Sybre Waaijer

    (@cybr)

    Hi moxymore,

    That’s a great idea for a free extension 🙂

    Feel free to describe an issue for it:
    https://github.com/sybrew/the-seo-framework/issues

    Allright thank you, i’ll do it.

    Hi,

    Great plugin and a breath of fresh air compared to the other mainstream bloated plugins.

    One small issue though, please remove “<!– Start The Seo Framework by Sybre Waaijer –>” from the head – you plugin developers need to stop putting your name/brand in OUR head sections. After a while you can have yours, visual composer, revolution slider, etc etc polluting the head section.

    Just my 5 cents worth.

    Regards,
    Jason

    Plugin Author Sybre Waaijer

    (@cybr)

    Hi Jason, @customwebkzn,

    A little marketing targeted at “people that dive in source” is required if we wish to continue making awesome free plugins 🙂

    However, you can easily remove the branding by activating the “Incognito” extension, which is provided in the Extension Manager:
    https://wordpress.org/plugins/the-seo-framework-extension-manager/

    Cheers!

    Anty

    (@wellbeingtips)

    Option where we can output seo data in normal posts and pages.

    I want to use your plugin not only to create SEO description but also automated post description.

    Is this possible?

    Plugin Author Sybre Waaijer

    (@cybr)

    Hi Anty / @wellbeingtips,

    The description output is already automated by default, and this can’t be disabled through options. You can manually edit the description too.

    Here’s an overview of how the description output is determined:
    https://wordpress.org/support/topic/seo-for-pages/#post-8265887

    Cheers 🙂

    Anty

    (@wellbeingtips)

    Hmm.. i don’t know if you understand me here (or if i good described:).

    What i want is: to use the output of the plugin to create automated content for posts, pages, categories, tags.

    To add some php code (the same one who is making descriptions) in the templates (single.php, tags.php..etc) and to get that same output on those pages,posts..etc (inside the content) using same short codes you have for seo meta.

    Example for post content: This post is about (title keyword) and here you can find many interesting things with (tag keyword)..

    Hope im more clear this time.

    Thanks!

    Plugin Author Sybre Waaijer

    (@cybr)

    Hi Anty / @wellbeingtips,

    What i want is: to use the output of the plugin to create automated content for posts, pages, categories, tags.

    This is already happening 🙂

    To add some php code (the same one who is making descriptions) in the templates (single.php, tags.php..etc) and to get that same output on those pages,posts..etc (inside the content) using same short codes you have for seo meta.

    If this leads to duplicated descriptions (exact 1=1 copies), I highly discourage you from doing so.
    Nevertheless, you can use shortcodes in manual descriptions, when the proper filter is initiated:

    add_filter( 'the_seo_framework_do_shortcodes_in_description', '__return_true' );
    

    This post is about (title keyword) and here you can find many interesting things with (tag keyword)..

    I think this will do, untested:

    add_shortcode( 'my-description-shortcode', 'my_description_shortcode_output' );
    function my_description_shortcode_output() {
    	$title = get_the_title();
    	$tags = get_the_tags();
    
    	$tag_list = '';
    	$_count = count( $tags );
    	$_i = 0;
    	foreach ( (array) $tags as $tag ) {
    		$_i++;
    		if ( $_i === $_count ) {
    			$tag_list .= ' and ' . $tag;
    		} elseif ( 1 === $_i ) {
    			$tag_list .= $tag;
    		} else {
    			$tag_list .= ', ' . $tag;
    		}
    	}
    
    	if ( $tag_list ) {
    		return sprintf( 'This post is about %s and here you can find many interesting things with %s.', $title, $tag_list );
    	} else {
    		return sprintf( 'This post is about %s', $title );
    	}
    }

    I hope this helps 🙂 Enjoy!

    Anty

    (@wellbeingtips)

    Thanks I’ll try that.

Viewing 12 replies - 1 through 12 (of 12 total)
  • You must be logged in to reply to this topic.