#6902 closed theme (not-approved)
THEME: Bere Elegant - 3.1
| Reported by: | bernabe.ber | Owned by: | kobenland |
|---|---|---|---|
| Priority: | major | Keywords: | theme-bere-elegant |
| Cc: | bernabe.ber@… |
Description
Bere Elegant - 3.1
A elegant, minimal theme. Wordpress 3.2.1 ready.
Theme URL - http://www.bernabefuentes.com/desarrollo-web/bere-elegant-tema-para-wordpress/
Author URL - http://www.bernabefuentes.com
SVN - http://themes.svn.wordpress.org/bere-elegant/3.1
ZIP - http://wordpress.org/extend/themes/download/bere-elegant.3.1.zip?nostats=1
Diff with previous version: http://themes.trac.wordpress.org/changeset?old_path=/bere-elegant/3.0&new_path=/bere-elegant/3.1
All previous tickets for this theme: http://themes.trac.wordpress.org/query?col=id&col=summary&col=keywords&col=owner&col=status&col=resolution&keywords=~theme-bere-elegant&order=id
Change History (6)
comment:1 Changed 14 months ago by kobenland
- Owner set to kobenland
- Status changed from new to assigned
comment:2 Changed 14 months ago by kobenland
- Resolution set to not-approved
- Status changed from assigned to closed
comment:3 Changed 14 months ago by bernabe.ber
I do not understand this:
. All Theme-defined functions must be custom-prefixed
. Scripts and stylesheets must be enqueued rather than hard-coded in the HTML document head
Can you give me some example?.
comment:4 Changed 14 months ago by kobenland
Themes are required to prefix all options, custom functions, custom variables, and custom constants with theme-slug (or appropriate variant).
Bad: admin_header_style()
Good: bere_elegant_admin_header_style()
Enqueue Scripts like so:
<?php function bere_elegant_scripts() { // enqueue your script with location, dependencies and version wp_enqueue_script('custom_script', get_template_directory_uri() . '/js/custom_script.js', array('jquery'), '1.0' ); } add_action( 'wp_enqueue_scripts', 'bere_elegant_scripts' );
See the Codex for reference.
comment:5 Changed 14 months ago by bernabe.ber
I do not understand this:
. Navigation menus are required to support core custom navigation menu functionality
.All public-facing text must be in English, with translation support provided for other languages, if needed
. Translation support is only partially implemented
Can you give me some example?.
comment:6 Changed 14 months ago by kobenland
Please consult the Codex first for questions on Theme Development and Theme Review Guidelines.


THEME REVIEW RESULTS
Previous Issues from #6885
Review Summary
Please note: (copied in parts from SeizedPropaganda?)