GithubHelp home page GithubHelp logo

Comments (6)

sybrew avatar sybrew commented on June 9, 2024

Hi Aldo,

That's a great idea, and it's already planned!

See the related topic: #20

Cheers!

from the-seo-framework.

abombelli avatar abombelli commented on June 9, 2024

Thanks for your feedback!
Any timeframe? It is really the only thing we are waiting for to change the SEO plugin.
Cheers

from the-seo-framework.

sybrew avatar sybrew commented on June 9, 2024

Hi Aldo,

There's no ETA as of yet; it might take a couple of weeks, it might even be delayed until early 2017.

For now, if you'd like, you can easily manually inject descriptions for certain pages or post types without any notable performance impacts with the filters below.

add_filter( 'the_seo_framework_description_output', 'my_special_description', 10, 2 );
add_filter( 'the_seo_framework_ogdescription_output', 'my_special_description', 10, 2 );
add_filter( 'the_seo_framework_twitterdescription_output', 'my_special_description', 10, 2 );
/**
 * Alters the description on special conditions.
 *
 * @param string $description The current description.
 * @param int $id The Post, Page or Term ID.
 * @return string Description. Does not need to be escaped.
 */
function my_special_description( $description = '', $id = 0 ) {

    /** 
     * @link https://developer.wordpress.org/reference/functions/is_post_type_archive/
     */
    if ( is_post_type_archive( 'my_post_type_name' ) ) {
        $description = 'My super description';
    }

    return $description;
}

from the-seo-framework.

abombelli avatar abombelli commented on June 9, 2024

Great! Thanks you.

from the-seo-framework.

carasmo avatar carasmo commented on June 9, 2024

I have 'autodescription-meta' added to my CPT custom support and I have no idea where I can modify the SEO content for CPT archive for meta content including social.

In the html, there's no Twitter information, just open graph.

from the-seo-framework.

sybrew avatar sybrew commented on June 9, 2024

Hi @carasmo

autodescription-meta is no longer needed from TSF 3.0.4, which was released a few days ago.
If the CPT has public and rewrite set to true (or any form of true-ish), then TSF can and will interact with it. For more information, consult WordPress' register_post_type() documentation.

For CPT archives, please see this comment, where I discussed implementing support for CPT archives.
The implementation of which is to be announced. Nevertheless, it's next in line to be included.

P.S. This is a very old issue that's discussed elsewhere, so I'm closing this for new comments. Feel free to open a new issue or continue at #20 😄

from the-seo-framework.

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.