thejamesdoc
Forum Replies Created
-
Forum: Reviews
In reply to: [Forward: Queue Posts] FunctionalI’ve forked this plugin to meet my need: https://github.com/jamesdoc/WP-Plgn-Queue-Posts.
It now has an option to ignore posts scheduled for the future.
Forum: Fixing WordPress
In reply to: Auto Embed of Videos Not WorkingOkie dokie. Apologies.
Forum: Fixing WordPress
In reply to: Auto Embed of Videos Not WorkingHi WPyogi,
I can reproduce this with certain elements.
Currently pasting in a straight YouTube/Video/Soundcloud link works fine. As soon as I switch over to using shortcode eg: [youtube #####] or [youtube http://youtube.com/####%5D I get the embed code returned.
With certain other services, such as Twitter, I get just the URL returned regardless.
Example:
In editor (text view)
OutputRunning no plugins and the 2013 theme.
—-
Update: I’ve just noticed that the Twitter embed problem is being investigated.Forum: Fixing WordPress
In reply to: Works only in permalinksThere is more information about changing file permissions in the Codex: Changing File Permissions
Forum: Fixing WordPress
In reply to: Aggregation of Custom Post TypesUpdate: having read the spec a little bit further it is advised to use
get_posts()rather thanquery_posts().More information:
query_posts()
get_posts()Forum: Fixing WordPress
In reply to: Aggregation of Custom Post TypesHi Sleneau. Thanks for the advise. I think (after further searching) I’ve come up with a nice method along the same lines:
$posts = query_posts( array( 'post_type' => array('ctp1', 'cpt2'), 'showposts' => 5 ) );Then just loop through these posts as required.
Forum: Fixing WordPress
In reply to: Works only in permalinksThat sounds like a permalink problem.
If you navigate to .com/wp-admin/options-permalink.php how are the links set up? The ‘pretty urls’ are not enabled by default.