-
·
Handbook Examples: Stylesheets and Scripts
Let us continue with making some examples, shall we? This one will focus on scripts and stylesheets. No hard coding of scripts, styles and Favicons unless a browser workaround script. Everything should be enqueued. This does include the main stylesheet. I’ll start with a few: Example: All stylesheets must be enqueued. add_action( ‘wp_enqueue_scripts’, ‘my_parent_theme_css’ );…
-
·
Weekly meeting agenda This week we’ve got our…
Weekly meeting agenda This week we’ve got our usual weekly meeting. I’d like to talk about mentoring in the meeting. Why it’s important and how can we make it so more of you join us mentoring? Login to Reply
-
·
Theme Tags
Here is a list of all of the tags that a theme can use and what the theme needs to fulfill to be allowed to use the tag. You can find the list of tags using APIAPI An API or Application Programming Interface is a software intermediary that allows programs to interact with each other…
-
·
Theme review team weekly notes The logs are…
Theme review team weekly notes The logs are here: https://wordpress.slack.com/archives/themereview/p1427220029004057 We talked about when a pluginPlugin A plugin is a piece of software containing a group of functions that can be added to a WordPress website. They can extend functionality or add new features to your WordPress websites. WordPress plugins are written in the PHP…
-
·
This week’s meeting will be at 18:00 UTC…
This week’s meeting will be at 18:00 UTC today. Let us know if you’ve got a topic you’d like covered. Login to Reply
-
·
Join me in welcoming new key reviewers We…
Join me in welcoming new key reviewers We all appreciate the great work everyone does with reviews. The admin team would like to today call out a few people specifically and say thanks by making them key reviewers. The role of key reviewer is given to people who have shown they consistently do amazing reviews.…
-
·
Handbook Examples: Language
Another round of examples, shall we? This one will focus on language examples. I’ll start it off: Required: load_theme_textdomain() add_action( ‘after_setup_theme’, ‘my_theme_setup’ ); function my_theme_setup(){ load_theme_textdomain( ‘slug-text-domain’, get_template_directory() . ‘/languages’ ); } // if child theme add_action( ‘after_setup_theme’, ‘my_child_domain’, 11 ); function my_child_domain(){ load_child_theme_textdomain( ‘child-text-domain’, get_stylesheet_directory() . ‘/languages’ } Login to Reply
-
·
Mobile-Friendly Themes
As some of you already know on April 21st, Google will expand use of mobile-friendliness as a ranking signal. This change will affect all mobile searches worldwide. Mobile-Friendly can be a Responsive design, but also an App that turns your theme into a “mobile version”. Since we don’t accept themes with mobile Apps because that…
-
·
Tracking tickets that need to reassigned
Recently we have had a number of tickets that have needed to be reassigned due to different reasons. The problem was is that these tickets are not easily identifiable as the ticket modified date changes once a comment is made in the ticket. I have created a new report so that we can publically track…
-
·
Agenda for this week’s meeting We’ve got a…
Agenda for this week’s meeting We’ve got a meeting at 18:00 UTC on Tuesday in SlackSlack Slack is a Collaborative Group Chat Platform https://slack.com/. The WordPress community has its own Slack Channel at https://make.wordpress.org/chat/ #themereview. Let us know what you’d like to talk about. So far we have: Increasing the maximum size and requirement for…