如何从 Divi 的 post 元中删除文本 "by" 和“|”?

How do I remove text "by" and " | " from post meta in Divi?

I want to remove these highlighted texts from meta section

请转到 Divi >includes > builder > functions.php 文件,您可以在那里找到代码。

 if ( ! function_exists( 'et_pb_postinfo_meta' ) ) :
function et_pb_postinfo_meta( $postinfo, $date_format, $comment_zero, $comment_one, $comment_more ){
    $postinfo_meta = '';

    if ( in_array( 'author', $postinfo ) )
        $postinfo_meta .= ' ' . esc_html__( 'by', 'et_builder' ) . ' <span class="author vcard">' . et_pb_get_the_author_posts_link() . '</span>';

    if ( in_array( 'date', $postinfo ) ) {
        if ( in_array( 'author', $postinfo ) ) $postinfo_meta .= ' | ';
        $postinfo_meta .= '<span class="published">' . esc_html( get_the_time( wp_unslash( $date_format ) ) ) . '</span>';
    }

通过和删除 |从这里 > 保存并检查。