Tagged Questions
0
votes
1answer
83 views
do add_action on condition
This snippet for example will email on EVERY post:
function email_friends( $post_ID )
{
$friends = 'bob@example.org, susie@example.org';
wp_mail( $friends, "sally's blog updated", 'I just put ...
4
votes
4answers
354 views
How to make plugin required in a wp theme without using php conditional statements when calling an individual function from that plugin?
One of my Wordpress themes requires a few third party plugins to run correctly.
Most of the times I used to call functions from third party plugins using conditional statements like
...