11/07/2017

The archive contains older posts which may no longer reflect my current views.

# That was easier than I expected!

I've updated my comments.php so that replies are now ordered chronologically and you naturally read the conversation naturally down the page.

It now uses a WP_Comment_Query to pull the relevant comments from the database where the webmention type, as detected by the Semantic Linkbacks plugin, is 'reply' and I just run through them with a foreach loop.  

$args = array(
  'post_id' => $id,
  'meta_key' => 'semantic_linkbacks_type',
  'meta_value' => 'reply',
  'order' => 'ASC'
);

$replies_query = new WP_Comment_Query;
$replies = $replies_query->query( $args );

# Using Textcode has made it so much easier to do almost everything I need on the phone.

# The "Run Workflow" share extension still doesn't work from Safari in iOS 11 Beta 3 but it's good to see you can swipe to force-close apps from the multi-tasking/Control Center screen again. The 'press and hold' option before was such a bad design choice.

3 comments: click to read or leave your own Comments

# The Workflow team are aware of the Safari share bug (thanks to Matthew from support for the email) so I look forward to that getting fixed.

Even without accounting for my reliance on Workflow, iOS 11 beta 3 still seems too unstable to consider putting it anywhere near my phone.