somethumb
Forum Replies Created
-
Hi Chuck, as much as I’d like to think HTML5 is around the corner, it’s not a final specification and in my business the client’s are always concerned about meeting accessibility guidelines and viewing their website on many versions of browsers. You’d be surprised to know how many of my clients still use IE7, which means I have to develop for that browser version and platform. I use XHTML because it’s what the W3C supports and what in-the-know clients provide to me as their requirements. The W3C validator is still useful and the industry standard of making sure that the HTML/CSS needs which are supported by 100% of the browsers and platforms are met. Plus, it can’t hurt that all tags should be closed. See: https://www.w3.org/TR/WCAG20-TECHS/H74
Looking forward to your updates, it’s a great plugin!
Forum: Themes and Templates
In reply to: Remove “Continue Reading” from TwentyTenAh, right, I use a COPY of the twentyten theme folder. That way i can customize the website design and still retain any original code in case i have to fall back to something that broke.
Forum: Themes and Templates
In reply to: Remove “Continue Reading” from TwentyTenActually, in your functions.php file:
ABOVE the function twentyten_auto_excerpt_more( $more ) {
FIND this function:
function twentyten_continue_reading_link() {
return ‘ ‘ . __( ‘Continue reading <span class=”meta-nav”>→</span>’, ‘twentyten’ ) . ‘‘;
}COMMENT OUT the return clause like this:
function twentyten_continue_reading_link() {
//return ‘ ‘ . __( ‘Continue reading <span class=”meta-nav”>→</span>’, ‘twentyten’ ) . ‘‘;
}Now it won’t show the link!
Forum: Installing WordPress
In reply to: TABS not working for editing pages and/or postsI know what it is. When you install the plug-in Exec-PHP, which executes <?php ?> code in your posts, pages and text widgets, the HTML editor gets turned off so that the php code doesn’t get changed into HTML entities.