Joy Reynolds
                                            Joy Reynolds
                                        
                                    How about `update_option()`? I have had themes change my thumbnail size, my front page choice, created a menu (I know that's another function), and I don't actually know what else....
Examples found in themes for `site_url()` at https://wpdirectory.net/search/01CWPQE2HWN1VCW14NTJZVR73W `$atts['href'] = site_url() . esc_attr( $item->url );` `wp_redirect(site_url());` `$source = get_site_url(); ` `if (strpos($item->src,get_site_url())!==false):` `'domain' => esc_url(site_url()),` `$items .= '` `$form =...
I'm thinking `wp_redirect` should be on this list.
I think you are mistaken. A theme names its menu locations, not the user. They should not have to be in variables. The menu location is not "content" as mentioned...
Maybe I'm just dense, but I don't see any benefit of having multiple rulesets.
And how would this work if the theme integrates a library for that purpose? Is it allowed because the theme isn't doing the work? Or is the library then part...
I think this has no place in this ruleset, not even as a warning.
Yes, what Justin said. Also, there is no requirement to tie it to. Also, there are plugins that remove the version numbers. And it doesn't apply to `add_editor_style`, where it...
Not quite all functions, but ways to change what page is displayed: // Sets the new location of the current window. (does not require same origin) window.location = "http://www.example.com"; //...
Trying to determine if a function is valid or not could be quite tricky since there could be functions of the same name that work differently for different objects. A...