Permítanme describirelescenarioen detalle. Desarrollotemaspara clientes con sus requerimientos. A veces,necesito agregarmeta depublicaciónen publicaciones/páginas/tipos depublicacionespersonalizadas,para quepuedan agregar códigos cortos (control deslizante,formulario de contacto,etc.) o simplemente untexto simple. Es untexto archivado.
Para queel shortcodefuncione,utilizo la opción 1 . Ahora,escuché de alguien queestaes unaformaincorrecta,y debería usar do_shortcode. Peronome dieron unaexplicación depor quéestámal. Poresopregunto.
Todoesteproceso sepuede realizaren eleditor detextopredeterminado de wp. Peronecesito crearesas opcionesparael usoespecífico de laplantilla,esoes lo que quierenmis clientes.
Lets say I have a theme option or custom postmeta text area. Now I want to execute multiple shortcodes, general texts, images etc.
What will be best practice and why?
Option 1:
$content = //my text area data;
echo apply_filters('the_content', $content);
Option 2:
$content = //my text area data;
echo do_shortcode($content);
Kindly explain me which one will be best practice and why.
EDIT
Let me describe the scenario in details. I develop themes for clients with their requirements. Sometimes, I need to add post meta on post/pages/custom post types, so that they can add shortcodes (slider, contact form etc) or just a simple text. It's a text filed.
To make the shortcode working, I use option 1. Now, I heard from someone that this is a wrong way, and I should use do_shortcode. But they did not give me an explanation of why it's wrong way. That's why I am asking.
This whole process can be done in the default text editor of wp. But I need to create those options for template specific usage, that's what my clients want.
Digamos quetengo una opción detema o un área detextopostmetapersonalizada. Ahora quieroejecutar varios códigos cortos,textosgenerales,imágenes,etc.
¿Cuáles serán lasmejoresprácticas ypor qué?
Opción 1:
Opción 2:
Porfavor,explíqueme cuál será lamejorpráctica ypor qué.
<×EDIT×
Permítanme describirelescenarioen detalle. Desarrollotemaspara clientes con sus requerimientos. A veces,necesito agregarmeta depublicaciónen publicaciones/páginas/tipos depublicacionespersonalizadas,para quepuedan agregar códigos cortos (control deslizante,formulario de contacto,etc.) o simplemente untexto simple. Es untexto archivado.
Para queel shortcodefuncione,utilizo la opción 1 . Ahora,escuché de alguien queestaes unaformaincorrecta,y debería usar
do_shortcode
. Peronome dieron unaexplicación depor quéestámal. Poresopregunto.Todoesteproceso sepuede realizaren eleditor detextopredeterminado de wp. Peronecesito crearesas opcionesparael usoespecífico de laplantilla,esoes lo que quierenmis clientes.