• Is there a way to auto tweet the ideas?
    I am using Jetpack/Publicize and see that I can add it to CPT’s, but I cannot work out where (assuming this is the correct solution).

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter paul.kelly

    (@paulkelly)

    I would be grateful for help from anyone!

    My site went live today and will only last for 5 weeks, as it relates to the UK elections!!!!

    Plugin Author Mathieu Viet

    (@imath)

    Hi,

    You can try to create a wp-idea-stream-custom.php file (see https://github.com/imath/wp-idea-stream/wiki/wp-idea-stream-custom.php for more infos) and include in it this code.

    function uk_elections_tweet_ideas( $post_type_supports = array() ) {
        $post_type_supports['supports'][] = 'publicize';
        return $post_type_supports;
    }
    add_filter( 'wp_idea_stream_post_type_register_args', 'uk_elections_tweet_ideas', 10, 1 );

    PS: don’t forget the opening php tag at the top of the file

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Tweet New Ideas’ is closed to new replies.