• Resolved leop21

    (@leop21)


    The jetpack was publishing the full text on Facebook, so I found a code this forum even though it partially solved the problem, now the title is shared on Facebook instead of the description!

    The problem occurs in some articles, that he does not pull the title and ends up inserting “automatic draft” in the publication.

    Has anyone ever experienced this?

    Topic that helped me: https://wordpress.org/support/topic/jetpack-posts-full-text-on-facebook/#post-6158911

    Print Admin: https://prnt.sc/vz2cc2

    Print Face: https://prnt.sc/vz2dw6

    In the admin, it always says “Automatic draft”, in 98% of the stories it pulls the correct title, but in some it goes like automatic draft

    function set_title_publicize () {
        global $post;
        $title =  get_the_title( $post->ID );
        update_post_meta( $post->ID, '_wpas_mess', $title);
    }
    
    add_action('the_post', 'set_title_publicize');
    add_action('save_post', 'set_title_publicize');
    add_action('draft_to_publish', 'set_title_publicize');
    add_action('new_to_publish', 'set_title_publicize');
    add_action('pending_to_publish', 'set_title_publicize');
    add_action('future_to_publish', 'set_title_publicize');
Viewing 1 replies (of 1 total)
  • Plugin Contributor Jen H. (a11n)

    (@jenhooks)

    Hi @leop21,

    Could you please post your site URL here, so we can do some targeted troubleshooting?

    Note that if you don’t have <!-- Jetpack Open Graph Tags --> in your site’s source, a different plugin is handling your open graph (OG) tags, and this won’t be something we can help you troubleshoot. More information on this here.

    Thanks!

Viewing 1 replies (of 1 total)
  • The topic ‘Jetpack posts full text on Facebook’ is closed to new replies.