• Resolved kremalicious

    (@kremalicious)


    The plugin should generate a shortlink for scheduled posts too. This way plugins like Social can use the bitly url for broadcasting scheduled posts.

    For this to work this in wp-bitly.php:

    if ( $post->post_status != 'publish')
    		return false;

    could be changed into

    if ( $post->post_status != 'publish' AND $post->post_status != 'future' )
    		return false;

    https://www.ads-software.com/extend/plugins/wp-bitly/

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: WP Bit.ly] Shortlink for scheduled posts’ is closed to new replies.