• Resolved Mickey

    (@sachin0414)


    Hello there ,
    I’m looking to buy the premium version of this plugin.

    Right now I’m using WordPress Automatic plugin to fetch the content from RSS Feeds & post it automatically.
    I woould like to know whether it will work on auto mode or do I have to manually optimize all the post before posting.

    Regards,
    Mickey

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Rank Math

    (@rankmath)

    Hello @sachin0414,

    Thank you for contacting the support and sorry for not following up quickly and any inconvenience that might have been caused due to that.

    You might have to add some code to make the SEO data available in the feed.

    Can you please tell us if you are using any SEO plugin on your site and how are you importing the data from it?

    The WP Automatic is a premium plugin that is not available on WP.org

    Though, we checked the plugin files and there we don’t see any compatibility code added for Yoast or AIO.

    Looking forward to helping you.

    Thread Starter Mickey

    (@sachin0414)

    I’m just using RankMath for SEO,
    Your support pannel has provided me the following code for automaically upadating title as a focused keyword.
    but I want it to be updated on the meta description and alt text of the featured image as well.

    
    

    function update_focus_keywords() {
    $posts = get_posts(array(
    ‘posts_per_page’ => -1,
    ‘post_type’ => ‘post’ // Replace post with the name of your post type
    ));
    foreach($posts as $p){
    // Checks if Rank Math keyword already exists and only updates if it doesn’t have it
    $rank_math_keyword = get_post_meta( $p->ID, ‘rank_math_focus_keyword’, true );
    if ( ! $rank_math_keyword ){
    update_post_meta($p->ID,’rank_math_focus_keyword’,strtolower(get_the_title($p->ID)));
    }
    }
    }
    add_action( ‘init’, ‘update_focus_keywords’ );
    `

    Plugin Author Rank Math

    (@rankmath)

    Hello @sachin0414

    To add Post title in alt, you can use the Add missing ALT attributes option: https://rankmath.com/kb/image-seo/#num-3-1-add-missing-alt-attributes

    To add it in the Meta description, you can set the default meta description for the post to %title%. Although we won’t recommend that, because as per Google’s guidelines the meta description length should be around 160 characters, and usually the Post title is short.

    Hope that helps. Thank you.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Is this work with WP Automatic plugin’ is closed to new replies.