Jay
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: help writing css classes for menu itemsForum: Fixing WordPress
In reply to: Comma in tagJust to clarify, I am using get_tag and by default, individual tags are separated by a comma. So I have to do “city state” as one tag. I need “city, state” as one tag.
Forum: Fixing WordPress
In reply to: How to push image down (padding)replace this
padding:-15px 0px;with
margin:5px 5px;Forum: Fixing WordPress
In reply to: Category Pages vs Custom Page Templatesπ Welcome!
Forum: Fixing WordPress
In reply to: Category Pages vs Custom Page TemplatesForum: Fixing WordPress
In reply to: Code verificationand now this
if($post->post_content !='' )Forum: Fixing WordPress
In reply to: Code verificationI changed it to this
if($content = $post->post_content !='' )Thanks!
Forum: Fixing WordPress
In reply to: Code verificationThank you!
Forum: Fixing WordPress
In reply to: Code verificationdoes this mean its right?
Forum: Fixing WordPress
In reply to: Category Pages vs Custom Page Templatesgot a link to the site?
Forum: Fixing WordPress
In reply to: Category Pages vs Custom Page Templateshow do you currently have your permalinks set? have you tried
/%category%/%postname%/if your on an archive page, it should display
http://www.mysite.co.uk/category-nameif your on a certain post, it will display
http://www.mysite.co.uk/category-name/post-title
hope that helps.
Forum: Fixing WordPress
In reply to: Category Pages vs Custom Page Templateswhat do you want your urls to be like?
Forum: Fixing WordPress
In reply to: Image Alt Text possible with this?I completely overlooked the connection part. haha maybe its time for a break. I understood you, I was trying to prevent an extra custom field. Thanks! π
Forum: Fixing WordPress
In reply to: Image Alt Text possible with this?I tried this, but it leaves me with a blank “alt”. I read this is where word press stores _wp_attachment_image_alt is where it’s alt text for images.
<img alt='<?php get_post_meta($post->ID, '_wp_attachment_image_alt', true); ?>Forum: Fixing WordPress
In reply to: Image Alt Text possible with this?I will try that. Thanks!