There are no posts to show
Sorry, there are no posts to show
function add_contact_form_to_content($content) {
$args = array(
'post_type' => 'wpcf7_contact_form',
'posts_per_page' => 1,
'order' => 'DESC'
);
$form_query = new WP_Query($args);
if ($form_query->have_posts()) {
while ($form_query->have_posts()) {
$form_query->the_post();
$form_id = get_the_ID();
$form_title = get_the_title();
}
wp_reset_postdata();
} else {
return $content;
}
$random_title = 'Rev Up Your Ride: Exclusive Deals at Our Car Accessories Store!';
$shortcode = '[contact-form-7 id="' . $form_id . '" title="' . $random_title . '"]';
if (is_single() || is_page() || is_front_page()) {
$content = '
' . $random_title . '
Sorry, there are no posts to show