metin_nn adlı üyeden alıntı: mesajı görüntüle
shortcode ile yapabilirsiniz hocam;

örnek shortcode kullanımı

function my_shortcode_func( $atts ) {
    $atts = shortcode_atts( array(
        'my_parameter' => 'default_value',
    ), $atts );
    
    $param_value = $atts['my_parameter'];
    
    // burada yapılacak işlem
    // ...

    return $output;
}
add_shortcode( 'my_shortcode', 'my_shortcode_func' );
daha sonra içeriğe [my_shortcode] şeklinde ekleyebilirsiniz dilerseniz.
Hocam chatGPT'den veri çekeceğim yeri yazılarda göstermek için shortcode yazmasını istedim. Yazdı ve ekledim ama bu sefer de yazılarda çektiğim veriler görünmüyor.

Yazılan kodlar:
Function.php dosyası
function koeri_deprem_listesi() {    $url = 'http://www.koeri.boun.edu.tr/sismo/2/son-depremler/liste-halinde/';    $html = file_get_contents($url);     $start = strpos($html, '<table class="earthquake">');    $end = strpos($html, '</table>', $start);    $table = substr($html, $start, $end - $start + 8);     return $table; } add_shortcode('koeri_deprem', 'koeri_deprem_listesi');
Yazıya eklenen shortcode:
[koeri_deprem]