vsp
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: getting an rss feed from a password protected site?how do i get the feed, then?
Forum: Fixing WordPress
In reply to: getting an rss feed from a password protected site?it’s the same website, though.
Forum: Fixing WordPress
In reply to: getting an rss feed from a password protected site?i’m using “Angsuman’s Authenticated WordPress Plugin” for password protection. you can find it here:
is it even possible to get a comments feed from a single page?
Forum: Fixing WordPress
In reply to: how do i block my posts from being seen by non users?thanks a lot, that did it
Forum: Fixing WordPress
In reply to: having 2 static index pages?bump. can anyone help?
Forum: Fixing WordPress
In reply to: having 2 static index pages?to clarify, i want to be able to call php functions on a page that’s not the index or one of the standard template files. i want to add a file to the template that i can use in the same way as i use my index page.
Forum: Fixing WordPress
In reply to: how to include an rss feed on a static page?i got CG-Feedread, but I can’t find any documentation on how to use it. anyone know where to find it?
Forum: Fixing WordPress
In reply to: Is it possible to have multiple post templates?Thanks, that worked great
Forum: Themes and Templates
In reply to: Is this design possible with wordpress?you don’t need to know any php before you start. I would suggest just replacing header.php with your own code and replacing the CSS file and making the necessary adjustments
Forum: Plugins
In reply to: Quote colorthe link doesn’t work, but you’re going to want to learn CSS (especially if you bill yourself as a webdesigner).
check out https://www.w3.org and https://www.alistapart.com for starters
Forum: Plugins
In reply to: Wordcount plugin for each post?Disregard that last post, I figured out the code to get it to round. If anyone is interested, It’s this:
$wordct = wordcount(get_the_content());
echo round($wordct,-2);Change the value of the -2 to change what it rounds to (-3 will round to the nearest thousand, 3 will round to the nearest thousandth, etc.)
Forum: Plugins
In reply to: Wordcount plugin for each post?excellent, i got it working. i have some knowledge of PHP, but it’s not extensive.
i have a second question: would it be possible to edit the code to make it round to the nearest hundred?
Forum: Plugins
In reply to: Wordcount plugin for each post?How exactly am I supposed to add that to functions.php? I tried to put it at the bottom of the code, but then when I tried to add the display code to the page layout, i got an error, and it wouldnt let me edit the theme. any ideas?
Forum: Fixing WordPress
In reply to: When I try to edit the style.css I get an error messageit randomly started working again, and no, i dont have any commented info on the top. it’s working without it. why would i need to have it? I’m using a custom theme that I made by editing the default one.