wordpress 如何在短码中调用短码?

5ktev3wc  于 2023-03-07  发布在  WordPress
关注(0)|答案(1)|浏览(210)

我想在wordpress页面编辑器中调用以下短代码:

[pdfjs-viewer url=/wp-content/uploads/pdfs/[wpcf7_session_id]/vertrag.pdf viewer_width=100% viewer_height=1500px fullscreen=true fullscreen_text='Im Vollbildmodus anschauen' download=true print=true]

问题是短代码[wpcf7_session_id]
有没有可能在页面编辑器中调用它?
或者我需要在后台的php文件中调用它吗?我该怎么做呢?

tp5buhyn

tp5buhyn1#

短代码不会自动嵌套--你必须自己调用do_shortcode($content),参见http://codex.wordpress.org/Shortcode_API上的caption_shortcode()示例。

相关问题