J'utilise ce code pour envoyer un email à partir de mon site wordpress. Il envoie des permaliens des messages. Comment puis-je éditer cela pour avoir des titres liés au lieu de simplement permaliens;
if(count($ids) > 0){
$user_id = $usermeta['user_id'];
$userdata = get_userdata($user_id);
$email = $userdata->data->user_email;
//echo $email;
$links = '';
foreach($ids as $id){
$link = get_permalink($id);
$links .= $link . ' <br>';
}
//echo $links;
if (have_posts()) :
while (have_posts()) :
the_post();
$emailTpl = get_the_content();
endwhile;
endif;
$message = preg_replace('/\[\%urls\%\]/', $links, $emailTpl);
$headers = "MIME-Version: 1.0\n" . "Content-Type: text/html;";
//wp_mail('[email protected]', 'New project notification', $link);
//wp_mail('[email protected]', 'New project notification', $message, $headers);
wp_mail($email, 'New project notification', $message, $headers);
}
L'avez-vous utilisé comme ça ??
<a href="<?php get_permalink($id); ?>"><?php the_title($id); ?></a>
pour l'usage à cela
foreach($ids as $id){
$link = get_permalink($id);
$title = get_the_title($id);
$links .= '<a href="'.$link.'">'.$title.'</a>'.'<br/>' ;
//$links .= $link . ' <br>';
}
Essayez de l'utiliser pendant que je code votre code.