在WP functions.php

时间:2018-09-28 16:19:45

标签: wordpress facebook twitter jetpack

我正在使用Jepack将我的帖子发布到Facebook和Twitter。使用Facebook,我可以根据永久链接的内容添加默认图像,如下所示:

function jeherve_custom_image( $media, $post_id, $args ) {
    if ( $media ) {
        return $media;
    } else {
        $permalink = get_permalink( $post_id );

        if ( strpos( $permalink, "belgium") )
            $url = apply_filters( 'jetpack_photon_url', '[pathto]/belgium.jpg' );
        else if ( strpos( $permalink, "france") )
            $url = apply_filters( 'jetpack_photon_url', '[pathto]/france.jpg' );
        else
            $url = apply_filters( 'jetpack_photon_url', '[pathto]/default.jpg' );

        return array( array(
            'type'  => 'image',
            'from'  => 'custom_fallback',
            'src'   => esc_url( $url ),
            'href'  => $permalink,
        ) );
    }
}
add_filter( 'jetpack_images_get_images', 'jeherve_custom_image', 10, 3 );

这很好!但是,我正在尝试对Twitter执行相同操作,但不能完全正常工作。

在此页面(https://developer.jetpack.com/hooks/jetpack_twitter_cards_image_default/)上我看到了,但是我真的不知道如何添加它:

apply_filters ( 'jetpack_twitter_cards_image_default', string $str )

我是否需要如上所述的另一个add_filter函数,或者可以将其包含在同一过滤器中?我在这里有些茫然,因此不胜感激!

0 个答案:

没有答案