• Resolved Jim

    (@jwmc)


    I’m hoping to replace the literal year in copyright text in the footer, with php that will insert the current year. It doesn’t show up in preview nor in the actual email. Is there any way to do it?

    <html tags>©<?php date( 'Y' ) ?> Forest Pathology<close html tags>

Viewing 1 replies (of 1 total)
  • Thread Starter Jim

    (@jwmc)

    I found this relevant support message and the filter to use: https://wordpress.org/support/topic/add-shortcodes-2/. So here is what worked. It even shows up in the Preview. Awesome!

    add_filter('haet_mail_footer', function( $footer ){
    return '<p style="text-align: center;"><span style="font-family: Tahoma, Geneva, sans-serif; font-size: 12px; color: #777;">©' . date( 'Y' ) . ' Forest Pathology</span></p>';
    });
Viewing 1 replies (of 1 total)
  • The topic ‘Possible to add php to html?’ is closed to new replies.