i have a card design and is required to create ti as shortcode. But i dont know how can i do this. My card design is here: https://prnt.sc/ElzMofw8Mh-9 . I think shortcode should be php code. Can someone take an example?
Something like this:
[price_box title="Najili Badewannenkissen" patch="Bestes Preis-Leistungs-Verhältnis" price="27,99 €" size="43x41 cm" material="Weiches Hochwertiges Polyestergewebe" rating="5" link="amazon.com" image=“https://medrepublic.de/wp-content/uploads/2022/12/Schlafposition6-e1670856393513.jpg“]
• 4D-Air-Mesh-Technologie und weichem Stoff
• Optimale Unterstützung für Ihren Nacken und Kopf
• Sechs Saugnäpfe halten das Kissen in Position
• Kann problemlos in der Waschmaschine gewaschen werden
[/price_box]
2
Answers
Creating a shortcode on WordPress is basically a PHP function.
If you don’t already have a child theme, I advise to create one.
Next step is to create your PHP function in your functions.php file (inside your theme folder).
After that, you have to "register" / "add" you shortcode with this function :
add_shortcode('name_of_shortcode', 'function_name');
Example : Create a shortcode that displays a simple Hello World
This goes in the editor
[price_box title="Najili Badewannenkissen" patch="Bestes Preis-Leistungs-Verhältnis" price="27,99 €" size="43×41 cm" material="Weiches Hochwertiges Polyestergewebe" rating="5" link="amazon.com" image="https://medrepublic.de/wp-content/uploads/2022/12/Schlafposition6-e1670856393513.jpg"%5D
• 4D-Air-Mesh-Technologie und weichem Stoff
• Optimale Unterstützung für Ihren Nacken und Kopf
• Sechs Saugnäpfe halten das Kissen in Position
• Kann problemlos in der Waschmaschine gewaschen werden
[/price_box]
This goes in functions.php
Add all styles to style.css