Advanced Use

Display the donation link programatically

If you want to dynamically display the donation link, from the current post, in your website, you can call the template tag from your theme files, as in the example:

<?php the_mmdimo_donation_link(); ?>

Custom parameters

The the_mmdimo_donation_link function accept the following optional parameters: the_mmdimo_donation_link([$before [, $after [, $echo [, $content [, $title [, $target]]]]]]), where:

  1. $before: A string to print before the link. Default value:
  2. $after: A string to print after the link. Default value:
  3. $echo: A boolean to opt to print the generated link, or return it as a string. Default value: true
  4. $content: A string to print inside the link content. Default value: NULL
  5. $title: A string to print as the link title. Default value: NULL
  6. $target: A string to print as the link target. Default value: NULL

Note the $content, $title and $target parameters, when set to the default value NULL, will generate the link with the default options. See the example below of a function calling with all the parameters set:

<?php the_mmdimo_donation_link('>> ', ' <<', true, __('Donate now!'), '', '_blank'); ?>

Donation link custom styles

You can customize the donation links styles using CSS rules in your theme file. The class mmdimo-donation-link is available on all donation links. Follow the example below to make them bold.

.mmdimo-donation-link {
    font-weight: bold;
}

Advanced obituary pages real examples

You can use the pages below as a reference. To see how they are made, click the link on the side. Due to the flexibility of WordPress themes, your files may be slightly different than ours, so you must adapt this examples to your site.