最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

shortcode - Advanced Custom Forms PHP formatting for do_shortcode

programmeradmin2浏览0评论

Hi i am trying to build a simple wordpress template template and want to introduce a pdf viewer into the page that pull's it file from an ACF field I am pulling my hair out with the syntax on the following do_shortcode call

PHP
<?php echo do_shortcode("[tnc-pdf-viewer-iframe file=".get_field('document_link')." width="900px" height="700px" download="false" print="false" fullscreen="true" share="true" zoom="true" open="true" pagenav="true" logo="true" find="true" current_view="true" rotate="true" handtool="true" doc_prop="true" toggle_menu="true" toggle_left="true" scroll="true" spread="true" language="en-US" page="" default_zoom="" pagemode=“”]");?php>

Hi i am trying to build a simple wordpress template template and want to introduce a pdf viewer into the page that pull's it file from an ACF field I am pulling my hair out with the syntax on the following do_shortcode call

PHP
<?php echo do_shortcode("[tnc-pdf-viewer-iframe file=".get_field('document_link')." width="900px" height="700px" download="false" print="false" fullscreen="true" share="true" zoom="true" open="true" pagenav="true" logo="true" find="true" current_view="true" rotate="true" handtool="true" doc_prop="true" toggle_menu="true" toggle_left="true" scroll="true" spread="true" language="en-US" page="" default_zoom="" pagemode=“”]");?php>
Share Improve this question asked Jan 13, 2020 at 18:27 Just StuckJust Stuck 1
Add a comment  | 

1 Answer 1

Reset to default 0

Even though you are echoing the shortcode, I think you still need to echo the ACF field inside the string of the do_shortcode function. Change your ACF field return function for the_field() :

<?php echo do_shortcode("[tnc-pdf-viewer-iframe file=".the_field('document_link')." width="900px" height="700px" download="false" print="false" fullscreen="true" share="true" zoom="true" open="true" pagenav="true" logo="true" find="true" current_view="true" rotate="true" handtool="true" doc_prop="true" toggle_menu="true" toggle_left="true" scroll="true" spread="true" language="en-US" page="" default_zoom="" pagemode=“”]");?php>
发布评论

评论列表(0)

  1. 暂无评论