# 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.
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.
@colinwalker I think Apple is trying to slowly break people of the habit of force quitting apps since it doesn't do all that much, save in very limited scenarios (e.g. If an app gets stuck and needs to be quit).
@eli There are some advantages such as flushing caches but I tend to do it to tidy up my multi-tasking screen - flicking through 20+ apps can be annoying ?
@colinwalker ah. That makes sense. I never use the app switcher so hadn't considered that scenario. I should double down on my iOS usage to learn those nooks and crannies.