David
David

Reputation: 35

how to add php code in wordpress divi theme post or pages

so far i am trying to add below code but not able to its a contact form 7 which will call page title on contact form, i have also tried with some plugins e.g Insert PHP & Code Snippet. any way to add PHP CODE in wordpress divi theme POST

<?php

echo '<a href="http://localhost/sivalic/enquiry?context=' . urlencode(get_the_title($post->ID)) . '" >contact form</a>';

?>

Please help if any other way to call a form from post contact link which include get variable in contact form and send mail

Upvotes: 3

Views: 19461

Answers (1)

Samyappa
Samyappa

Reputation: 531

You can add php code in divi theme through widget.

Step 1: create PHP code widget.

Step 2: Goto divi theme module choose sidebar module.

Step 3: sidebar module you can choose your php widget.

Upvotes: 3

Related Questions