문제

Here is my shortcode:

[contact-form-7 id="1735" title="Contact form 1"]

To execute it, I need it in links (Ex.http://html.com). How to convert this short code to link? Is it possible?

올바른 솔루션이 없습니다

다른 팁

Wrap your shortcode in a div and give it an ID that you can use as a target when triggering your popup. For example, you can put the shortcode somewhere on your page (content, sidebar, etc) as follows:

<div id="popup" class="lightbox">[contact-form-7 id="1735" title="Contact form 1"]</div>

and the link that trigges the popup will look something like

<a href="#popup">Form</a>

You might have to use do_shortcode() in some cases, depending on where and how you add the shortcode.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 wordpress.stackexchange
scroll top