Showing tags in wordpress without link
Hi there - I would like to show a list of tags on a post but without a link on the tag. Right now I use: <?php the_tags( '<li>', ', ', '</li>'); ?> How do I strip the link from the tag? ...
Hi there - I would like to show a list of tags on a post but without a link on the tag. Right now I use: <?php the_tags( '<li>', ', ', '</li>'); ?> How do I strip the link from the tag? ...
I want to create a custom page for my Wordpress blog that will execute my php code in it, whilst remaining a part of the overall site css/theme/design. The php code will make use of 3rd party APIs (so I need to include other php files) How do I accomplish this? N.B. I do not have a specific need to interact with the Wordpress API - a...
I am trying to integrate a small section on an existing website, my problem seems simple, but I can't seem to get my head around it. Here is how I want it to look like: Blue = #pagecontainer Red = #sectioncontainer Yellow = .post pagecontainer { height: 100%; width: 900px;} post container {width: 900px;} .post {width: 210px;} Four ...
Currently, I have a blog which is running on wordpress. I want to know how many users subscribe my feeds. I know that if i used feedburner, I can get the counter from there. But I was really wondering if there's anyway that we can track the subscriber easily. Please kindly share the code or ideas. Thanks. ...
I'm looking into setting up a very simple site (static pages and an image gallery) with Wordpress for a non-web-savvy client, so I'd like to simplify the Editor role's admin interface as much as possible. Looking through Wordpress's plugin directory, I found several plugins that "CMS-ify" the admin side of things, hiding menu options an...
How to change same page/post css styling from page template (background, font, etc) ...
I have been trying to get rid of an infection in this (blog.theyoungrens.com) for a few weeks and am at my wits end, I have scoured the DB, and as many source files as possible, to no avail. I have replaced the theme from fresh files, and the blog is fixed for a short amount of time, but inevitably gets re-infected. FTP passwords have a...
phpFox should take care of user login management, add user and edit user. But would like to automatically create a corresponding Wordpress account when user signs up for phpFox. And when user logs into phpFox user is auto logged into Wordpress so user doesn't really even realize Wordpress login or user account exists. What would be the...
I have a main page that has a children item. Now my question is, is it possible to have the Main page link directly to the children item in it? E.g. -Main Page(links to Page 2) ---Page 2 Here is my code: <div id="MainNav"> <ul> <?php wp_list_pages('exclude=3&sort_column=menu_order&title_li=&depth=1'); ?> </ul> </div> <div id="leftCol...
I am writing a plugin which does some js stuff, but does not work for other browsers than FF . I've thought why not execute the plugin for the browsers which support it. I've added the code, but for some reason when I activate the plugin and check the site with a FF all I get is blank page. If I visit with a IE the site is shown correctl...
Hello, In wordpress, there is settings for the feed to show Summary or Full. I want to show only content summary at Feeds. But the default summary is still too long for me. And there's another way to add excerpt at each of the post. For that option, I can't use it either because I am running multiple author blog and most of the people d...
Is it possible to create small blocks of editable content on certain pages of a wordpress install? I am thinking along the lines of little boxes that contain specific information that can be edited through the admin dashboard. ...
I just started out with WordPress and I'm having some problems with the custom fields. Here's the code from functions.php add_post_meta($post_id, 'Post Thumbnail', $post_thumb, true) or update_post_meta($post_id, 'Post Thumbnail', $post_thumb); add_post_meta($post_id, 'Project URL', $url, true) or update_post_meta($post_id, 'Project URL...
Hi, I'm building quite a large site, no e-commerce, but a a lot of specific content to be managed. For some reason, the client wants Wordpress. There is no way of getting around this... I've used Wordpress before to rapidly develop blogs, but that's about it. If anything goes beyond the scope of Wordpress I'll use a framework in someth...
Hi all, I have a blog (of a friend) I am failing to fix: http://www.nivcalderon.com/ The language of the website is Hebrew, but the encoding scrambles the output, and I can't find how to fix it. I tried changing the DB colliation to be utf8_general_ci. I added this: define('DB_COLLATE', 'utf8_general_ci'); To the wp-config (and ...
Hi I have a Wordpress installation for a restaurant, with a menu (food) with numbers. The menu (food) numbers dosn't go from 1-50 continuously but starts with the next 5 like this: Lunch offers: 1-4 Chicken sticks: 10-13 Chicken wings: 15-17 Salads: 20-23 This is made, so it's easy to add something within the different categories wit...
I'm starting a blog with a hosted wordpress instance and i would like to be able to stream music using a flash player on some posts. The problem is that every player i find uses a simple param to get the file url which makes it very easy for someone to find that url and just download the file. I know that it's probably impossible to pr...
Hello I tried to get some help ealier, but I think it didn't make any sense, what I wronte. Sorry for my realtivly bad English. Wordpress: I have several categories, with a number in each description. Every category has some children. Example 4. I need some type script, that takes the category description (the number specified) and ad...
I'm using the Lightbox 2.9.2 (Rupert Morris, based on ) on my Wordpress blog (designink.nl) and use the auto-lightbox setting (lets the plugin add html to image links). However, i'd like to prevent a specific image on a post to be called by lightbox. Is there a code to break/prevent this on individual instance and not change my automatic...
I'm working on a theme that has both a project page and a blog. I want to keep the blog posts at the default of 10, so I used the posts_per_page option to limit the number of projects on the first page, like this: <?php $catID = get_cat_id('Projects'); $number = get_option('grd_portfolio_number'); if(have_posts()) : $paged = (get_query...