jhover
Forum Replies Created
-
You would insert this code in your main post file:
<?php echo the_author_firstname(); ?> <?php the_author_lastname(); ?>
This will show first & last name.
So if you want it in your home post format you would add it to index..
If you want it on the silge post pages you will add it there as well.Forum: Fixing WordPress
In reply to: My RSS feed isn’t workingWhen I click on the rss feed it is working correctly and showing all posts.
Joshua
Forum: Plugins
In reply to: How to change the font size of my Twitter widgets?You can run an inline CSS style. I have added it to the code below:
<script src=”http://widgets.twimg.com/j/2/widget.js”></script>
<script>
new TWTR.Widget({
version: 2,
type: ‘profile’,
rpp: 8,
interval: 6000,
width: ‘auto’,
height: 300,
theme: {
shell: {
background: ‘#ffffff’,
color: ‘#000000’
},
tweets: {
background: ‘#a8a8a8’,
color: ‘#ffffff’,
links: ‘#384f63’
}
},
features: {
scrollbar: true,
loop: false,
live: false,
hashtags: true,
timestamp: true,
avatars: true,
behavior: ‘all’
}
#sidebar ul li .twtr-bd {font-size:1em;}
}).render().setUser(‘edokoch’).start();
</script>This will make the change to the CSS