Contact Form 7 Shortcode not recognized inside another shortcode
Question
I’ve created a code snippet with its shortcode to hide part of the post content for non-logged users:
[private]
…
[/private]
works great but when I try to put another shortcode (contact form 7) inside its not recognized. What could be the problem?
This is my code snippet:
function bp_contenido_privado( $atts, $content = null ) {
if ( is_user_logged_in() )
return $content;
return '<p style="font-weight:bold;padding-top:10px;">Este contenido esta reservado para los usuarios registrados. Registrate <a href="'.wp_registration_url().'">aquí</a> o <a href="'.wp_login_url(get_permalink()).'">inicia la sesión</a> para poder verlo..</p>';
}
and this is the post content:
[privado]
<h4>Por favor llene los datos solicitados. Los formatos aceptados para subir archivos son pdf y jpg con un tamaño máximo de 2mb.</h4>
Error: Contact form not found.
[/privado]
0
posts, shortcode
4 years
2020-03-23T12:51:50-05:00
2020-03-23T12:51:50-05:00 0 Answers
105 views
0
Leave an answer