luckiecks
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Looking for a way to make get_the_category to not be a linkSolved. Change TRUE to FALSE.
Forum: Fixing WordPress
In reply to: Name and comment form same length across browsersSwitching to disqus. Bye locally hosted comments :'( plz dont die disqus i need u forever bro
Forum: Fixing WordPress
In reply to: How do I change the arrow to another symbol in my title?That worked but it’s not very customizable. I want it to be just “title” on the home page, and when on a category or post it be “post : title” and “category : title” I tried rearranging it like this
<title><?php if ( is_single() ) { ?> <?php } ?><?php wp_title(‘:’); ?> title</title>
to no avail. I appreciate the help.
edit: what it does is ‘ : “post” “title” ‘ instead of ‘ “post” : “title” ‘ when i do that
Forum: Fixing WordPress
In reply to: How do I change the arrow to another symbol in my title?It’s all on localhost right now
Forum: Fixing WordPress
In reply to: How can I make my index posts appear to be titled "category: title"?Solved. It’s <?php $cats=get_the_category(); echo get_category_parents($cats[0]->cat_ID,TRUE,’:’);?>
Forum: Fixing WordPress
In reply to: How can I make my index posts appear to be titled "category: title"?<?php
$args = array(0) i mean