View Single Post
Old 04-20-2016, 08:05 PM  
JosephFM
Confirmed User
 
Industry Role:
Join Date: Feb 2010
Posts: 1,190
Thanks for the code CyberSEO!

BTW, the code above that you have to place on the "PHP code <?php .. ?>" box might not work for some, since it places all the content in the excerpt area, so if you are having trouble with that one, use the code below so that all the info from the feed gets placed in the post content area instead. I think it depends on the theme you use.

Code:
$post['guid'] = $post['custom_fields']['embed_chat_url'];
$post['post_title'] = '' . $post['custom_fields']['display_name'];
if (!cseo_post_exists($post)) {
    if (substr($post['custom_fields']['thumb'], 0, 2) == '//') {
        $post['custom_fields']['thumb'] = 'http:' . $post['custom_fields']['thumb'];
    }
    $post['post_content'] = '<iframe src="' . $post['guid'] . '" width="850" height="380"></iframe>';
    $post['post_content'] .= '<p style="text-align: center;"><b>Weight:</b> ' . $post['custom_fields']['weight'] . ', <b>height:</b> ' . $post['custom_fields']['height'] . '</p>';
    $post['post_content'] .= '<p style="text-align: center;"><b>Ethnicity:</b> ' . $post['custom_fields']['ethnicity'] . ', <b>language:</b> ' . $post['custom_fields']['primary_language'] . '</p>';
    $post['post_content'] .= '<p style="text-align: center;"><b>Turns on:</b> ' . $post['custom_fields']['turns_on'] . ', <b>turns off:</b> ' . $post['custom_fields']['turns_off'] . '</p>';
    unset($post['custom_fields']['embed_chat_url']);
    unset($post['custom_fields']['display_name']);
    unset($post['custom_fields']['turns_on']);
    unset($post['custom_fields']['turns_off']);
    unset($post['custom_fields']['primary_language']);
    unset($post['custom_fields']['ethnicity']);
    unset($post['custom_fields']['height']);
    unset($post['custom_fields']['weight']);
} else {
    $post = false;
}
JosephFM is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote