Created
February 13, 2018 10:55
-
-
Save adnan360/69688e193176ade6104464e6e67d1502 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$labels_per_page = 14; | |
$no_of_pages = ceil( count( $expiring_members ) / $labels_per_page ); | |
$index = 0; | |
$template_file = dirname( MPLUS_CE ) . '/assets/template.docx'; | |
$upload_dir = wp_get_upload_dir(); | |
$save_path = $upload_dir[ 'basedir' ] . '/expiring_memberships.docx'; | |
$save_url = $upload_dir[ 'baseurl' ] . '/expiring_memberships.docx'; | |
$document = new Mplus_PHPWord_Template( $template_file ); | |
$countries = WC()->countries->get_countries(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment