beansbbq
Forum Replies Created
-
Forum: Plugins
In reply to: Tracking your block with MonpageYou can try the plugin as is to test it with your theme. Be sure to change the account and service variables if you’re going to use the plugin to track your own url. See code below. ‘monpage’ becomes your account name that you created when you signed up. ‘twitter’ becomes the portfolio name of the url that you want to track. You created the portfolio name when you set up the url within monpage.
// This function prints the script and style tags function widget_monpage_header() { $options = get_option('widget_monpage'); $account = empty($options['account']) ? 'monpage' : $options['account']; $service = empty($options['service']) ? 'twitter' : $options['service'];
Forum: Plugins
In reply to: Tracking your block with MonpageInteresting. I entered the More Quicktag after the second paragraph to test it out, however the break is after the first page on the homepage. There is an indication that the write up continues by the following: […] However, this is not a link, but simply text.
I am using the Green-beast theme. Checking out this link shows that it is possible with the theme. https://green-beast.com/blog/
Perplexed
============================
Update
I got it! Thanks HandySolo!Thanks HandySolo,
I did find the more quicktag, and it did insert <!– More –> for me, however I don’t know what I’m suppose to see after saving the changes.
Hi all. I’m still using WP 1.5.1.3 since I’m afraid to upgrade to 2.0. My single.php file reads as follows, but the “Read the rest of this entry” doesn’t show up. I don’t see Quicktags either. Any thoughts?
======================
<div class=”entry”><?php the_content(‘Read the rest of this entry »’); ?>
</div>
======================