Skip to content

Commit

Permalink
theme checker fixes #98
Browse files Browse the repository at this point in the history
  • Loading branch information
jlavoie13 committed Jul 6, 2016
1 parent 18dd4d0 commit c166cd2
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 8 deletions.
6 changes: 5 additions & 1 deletion 404.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,12 @@
</header>

<div class="page-content">

<p><?php _e( 'It looks like nothing was found at this location. This may be due to the page being moved, renamed or deleted.', 'scaffolding' ); ?></p>

<?php _e( '<p>It looks like nothing was found at this location. This may be due to the page being moved, renamed or deleted.</p><ul><li>Check the URL in the address bar above;</li><li>Look for the page in the main navigation above or on the <a href="/site-map/" title="Site Map Page">Site Map</a> page;</li><li>Or try using the Search below.</li></ul>' ); ?>
<ul>
<?php _e( '<li>Check the URL in the address bar above;</li><li>Look for the page in the main navigation above or on the <a href="/site-map/" title="Site Map Page">Site Map</a> page;</li><li>Or try using the Search below.</li>', 'scaffolding' ); ?>
</ul>

<?php get_search_form(); ?>

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ Responsive Design Scaffolding for WordPress

[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/hallme/scaffolding?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

Responsive Wordpress Base Theme based off bones, Foundation, Bootstrap (+ more)
Responsive Wordpress Base Theme based off Bones, Foundation, Bootstrap (+ more)

scaffolding is designed to make the life of developers easier. It is
Scaffolding is designed to make the life of developers easier. It is
built using HTML5 & has a strong semantic foundation. It is developed
with the goal of providing a starting point for every responsive
wordpress theme that we build.
WordPress theme that we build.

Scaffolding.io: Customization and Documentation
http://scaffolding.io
Expand Down
2 changes: 1 addition & 1 deletion functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ function scaffolding_wpsearch( $form ) {
$form = '<form role="search" method="get" id="searchform" class="clearfix" action="' . home_url( '/' ) . '" >
<label class="screen-reader-text" for="s">' . __('Search for:', 'scaffolding') . '</label>
<input type="text" value="' . get_search_query() . '" name="s" id="s" placeholder="'.esc_attr__( 'Search the Site&hellip;', 'scaffolding' ).'" />
<input type="submit" id="searchsubmit" value="'. esc_attr__('Go') .'" />
<input type="submit" id="searchsubmit" value="'. esc_attr__( 'Go', 'scaffolding' ) .'" />
</form>';
return $form;
} // end scaffolding_wpsearch()
Expand Down
4 changes: 2 additions & 2 deletions includes/base-functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -520,5 +520,5 @@ function scaffolding_fix_img_caption_shortcode( $attr, $content = null ) {
if ( $id ) $id = 'id="' . esc_attr( $id ) . '" ';
return '<figure ' . $id . 'class="wp-caption ' . esc_attr($align) . '" >' . do_shortcode( $content ) . '<figcaption class="wp-caption-text">' . $caption . '</figcaption></figure>';
}
add_shortcode( 'wp_caption', 'scaffolding_fix_img_caption_shortcode' );
add_shortcode( 'caption', 'scaffolding_fix_img_caption_shortcode' );
//add_shortcode( 'wp_caption', 'scaffolding_fix_img_caption_shortcode' );
//add_shortcode( 'caption', 'scaffolding_fix_img_caption_shortcode' );
20 changes: 20 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
== Responsive Design Scaffolding for WordPress ==

Contributors: Hall Internet Marketing
Tags: translation-ready, microformats, rtl-language-support

Requires at least: 4.0
Tested up to: 4.5.3
Stable tag: 1.0.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

== Description ==

Scaffolding is designed to make the life of developers easier. It is built using HTML5 & has a strong semantic foundation. It is developed with the goal of providing a starting point for every responsive WordPress theme that we build.

== Installation ==

1. In your admin panel, go to Appearance > Themes and click the Add New button.
2. Click Upload and Choose File, then select the theme's .zip file. Click Install Now.
3. Click Activate to use your new theme right away.
2 changes: 1 addition & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Author URI: http://www.hallme.com
Version: 1.0
Text Domain: scaffolding
Domain Path: /languages/
Tags: fluid-layout, responsive-layout, translation-ready, microformats, rtl-language-support
Tags: translation-ready, microformats, rtl-language-support
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Expand Down

0 comments on commit c166cd2

Please sign in to comment.