Joy Reynolds

Results 369 comments of Joy Reynolds

Would this apply to other links in the code, that point to documentation?

This page https://codex.wordpress.org/Shortcode_API#Names lists the characters that should not be in a shortcode name. Although the asterisk is not listed, it should be.

Here's a list of lines using `bloginfo` that reference `version`. My assessment assumes that `bloginfo('version')` gives the WP version. https://github.com/ClassicPress/ClassicPress/blob/889a0c0532f06fdc3f1f364f7a306c6bddabcc7d/src/wp-admin/admin-header.php#L162-L163 :grey_question: The branch and version are made into classes to...

This follows the admin trend of having the top-level link repeated in the dropdown (the first entry of the dropdown may be a different Label, but the same destination). By...

I do this in my theme, (it loads both the parent and child style) ``` $theme = wp_get_theme(); $version = $theme->parent() ? $theme->parent()->get( 'Version' ) : $theme->get( 'Version' ); wp_enqueue_style(...

> The default `style.css` file for a theme is a different story. Since the core software enqueues this file for me, I have to jump through some hoops to use...

So this is separate from a man page or extended help topics?

Both Git and Breezy have a lot of info accessible as `help` subcommands. (that's what I call extended `help`) This proposal is for a separate command called `docs`.

I'm wondering if other SSH implementations are susceptible also. https://www.wired.com/story/xz-backdoor-everything-you-need-to-know/ > Malicious code added to xz Utils versions 5.6.0 and 5.6.1 modified the way the software functions. The backdoor manipulated...

Seeing > as there are always multiple people working on the same file(s) at the same time made me think of [AutoMerge](https://automerge.org/) and then [Grace](https://github.com/ScottArbeit/Grace).