navid
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: pluginsUsed on 1.5 pageI concur with Karsh.
Also, you can embed pluginsUsed inside a WP page using the wp-exec plugin.
Forum: Themes and Templates
In reply to: recent posts by category?Pericat, four replies above your post I already posted the sample code:
<ul>
<exec type="function" name="get_archives" params="postbypost, 20, html" />
</ul>Enjoy.
Forum: Themes and Templates
In reply to: recent posts by category?Thanks for trying to make me feel better alphaoide. I added it to the Wiki. Let’s see if I get some love now.
Forum: Plugins
In reply to: Plugin Request: Underline quicktag in editorIf you don’t want to fiddle around with quicktags.js or any of that junk, you can add:
.underline
{
text-decoration: underline;
}to your CSS stylesheet (e.g. style.css) and then use:
<span class="underline">your text here</span>inside of your posts and pages.Forum: Themes and Templates
In reply to: recent posts by category?This is the type of thing that my WP-Exec plugin is exactly for. Unfortunately, for some oddities, my plugin has got no love even though I think its pretty damn useful!
http://www.navidazimi.com/projects/wp-exec/
Then, in ANY post or page, simply add:
<ul>
<exec type="function" name="get_archives" params="postbypost, 20, html" />
</ul>Pretty damn sweet huh? But no, nobody loves Navid and his hard work.
The Bitter One.
Forum: Themes and Templates
In reply to: Where’s the <p> coming from?Semantically,
<p>should go around paragraphs of text. That’s what it is for and it is being correctly used. If you do not like the spacing it generates, you should probably resort to using CSS:p {
margin: 0;
padding: 0;
}For example, might generate the look and feel you are looking for without having to hack away at the WP core functionality. Thats my two-cents.
Navid.
Forum: Themes and Templates
In reply to: Kubrick producing error on last line 1try to download and reupload. make sure there are no spaces or carriage returns at the end of the files.
Forum: Your WordPress
In reply to: NerdElite.comI don’t know if this is clever or not, but the checkbox for “join mailing list” seems to be a “required” field thereby not being able to submit the vcard unless you subscribe to the mailing list.
Forum: Your WordPress
In reply to: NerdElite.comForum: Fixing WordPress
In reply to: Can posts and pages be mixed?My new wp-exec plugin supports including posts or pages within one another. I thought you may be interested.
Forum: Fixing WordPress
In reply to: %month%I would assume that the easiest method would be to add 12 new rewrite rules in your .htaccess to simply forward /feburary/ to 02, etc.
Forum: Plugins
In reply to: Other pages using templateIn WP 1.5 you can create a “static page”.
Forum: Fixing WordPress
In reply to: combat new trackback spamI am not sure why it did not work but there is a bigger issue at hand:
Generally, renaming the file does not help combat any type of spam because the spam spiders/bots actually read the source code to find out where the file is going. Therefore, you could change the name to anything you want and update it as frequently as you want but since they are scanning the source you’d hardly even make a dent.
Forum: Fixing WordPress
In reply to: New page with comment php codingWhy not do this:
[1] Create a category called “Reviews”
[2] And then create a new “post” for each review and assign it the “Reviews” category. Then, create a page called “movies” and insert all your reviews in there.This seems like the best solution — you can administrate, edit and update reviews using WordPress and users can comment/trackback etc.
By the way, its Memento not Momento (http://www.imdb.com/title/tt0209144/)
Good luck!
Forum: Themes and Templates
In reply to: Odd and even css for links.phpI am actually implementing this feature into my wp-exec plugin. Basically allowing you to embed links inside posts or pages, dynamically.