This file contains 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
<div class="circle"></div> | |
<p>Created with <i class="fa fa-heart"></i> by <a href="https://codepen.io/rakeshnayak/" target="_blank">Rakesh Nayak</a></p> |
This file contains 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
<?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-thumbnail' ); ?> | |
<meta property="og:title" content="<?php the_title(); ?>" /> | |
<meta property="og:description" content="" /> | |
<meta property="og:image" content="<?php echo $image[0]; ?>" /> | |
<meta property="og:video" content="" /> | |
<meta property="og:video:width" content="560" /> | |
<meta property="og:video:height" content="340" /> | |
<meta property="og:video:type" content="application/x-shockwave-flash" /> |
This file contains 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
if(isset($_POST['photoupload_submit'])){ | |
$rand = rand(0000,9999); | |
// Count total files | |
$countfiles = count($_FILES['file']['name']); | |
$subject = "Payment received #$orderidnumber"; | |
$message ='<p>You have reviced payment following order Id: ' . $activation_link . '</p>'; |