Robin
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Search Engines [Google]as far as being on good ranking for your keywords you would have to optimise your website (SEO)
Forum: Fixing WordPress
In reply to: Changing space/margins around text contenthi this is a default twentyeleven styling
the first thing is to make a child theme for your twentyeleven
and in style css making padding and margin as per your requirementsForum: Fixing WordPress
In reply to: Trouble using Taxonomiesadd_action( 'init', 'register_taxonomy_peoples' ); function register_taxonomy_peoples() { $labels = array( 'name' => _x( 'Peoples', 'peoples' ), 'singular_name' => _x( 'People', 'peoples' ), 'edit_item' => _x( 'Edit People', 'peoples' ), 'update_item' => _x( 'Update People', 'peoples' ), 'add_new_item' => _x( 'Add New People', 'peoples' ), 'add_or_remove_items' => _x( 'Add or remove peoples', 'peoples' ), 'menu_name' => _x( 'Peoples', 'peoples' ), ); $args = array( 'labels' => $labels, 'public' => true, 'show_in_nav_menus' => true, 'show_ui' => true, 'show_tagcloud' => true, 'hierarchical' => true, 'rewrite' => true, 'query_var' => true ); register_taxonomy( 'peoples', array('post'), $args ); }should be something like this
Forum: Fixing WordPress
In reply to: Conditional page title for home verses other<title> <?php if (is_home()) { echo ' bloginfo( 'name' );' } else { } ?> </title>Forum: Fixing WordPress
In reply to: Conditional page title for home verses othertry using all in one SEO plugin
Forum: Fixing WordPress
In reply to: Trouble with display image for "Structure" themeah this is wordpress.com
you would need to post your query
http://en.forums.wordpress.com/
hereForum: Fixing WordPress
In reply to: Hide Post Author & Date – specific issue…cheers 🙂 looking forward to hearing from you
Forum: Fixing WordPress
In reply to: Stream link unresponsive/lostyup it looks like it is down
Forum: Fixing WordPress
In reply to: Hide Post Author & Date – specific issue…Ben contact me through my website and we can take it from there
Forum: Fixing WordPress
In reply to: Hide Post Author & Date – specific issue…and try instead of is_category
to in_categoryForum: Fixing WordPress
In reply to: Hide Post Author & Date – specific issue…nope do it outside the main function <? ?> thing
would be betterForum: Fixing WordPress
In reply to: Hide Post Author & Date – specific issue…you must be conflicting it with other php opening and closing
Forum: Fixing WordPress
In reply to: Hide Post Author & Date – specific issue…instead of the id try using the slug
i know this is the logic which should work / infact it works so you have to play around with the code as per your conditioni didnt get when u said its already <? ?> its already there ?
Forum: Fixing WordPress
In reply to: Hide Post Author & Date – specific issue…i am not doing it on a dreamweaver or anything so might miss brackets or something i am just on my phone
so keep an eye on the syntax i am just giving you logicForum: Fixing WordPress
In reply to: Hide Post Author & Date – specific issue…<?php
missed it but add itthe second thing you tried it, but did you add important ? to display:none ?