Arkadaşlar "functions.php" ye aşağıda ki kodu eklemem lazım.
function add_post_content($content) {
 if(!is_feed() && !is_home()) {
 $content .= '<p>[pw_map address="<?php echo get_post_meta( get_the_ID(), 'usp_custom_field', true ) ?>" key="AIzaSyD1J47nUjdDU1e9l75vq8hHzR9jKRrxAU8"]</p>';
 }
 return $content;
}
add_filter('the_content', 'add_post_content');
ama hata alıyorum.
  syntax error, unexpected 'usp_custom_field' (T_STRING)
Sorunsuz şekilde nasıl ekleyebilirim ? get_post_meta 'yı ben yanış çağırıyorum, sorun kaynağı buradan çıkıyor tahmin ediyorum.
Çünkü functions.php 'de kullanım şekli şöyle : https://developer.wordpress.org/reference/functions/get_post_meta/
Bu konuda yardımcı olursanız memnun olurum.