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.