The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
83 views

Tag list & tag index for custom post type

Wordpress issue: I have a custom post type: custom-post-type. register_post_type( 'custom-post-type', array( 'label' => __('Custom Post Type'), 'public' => true, 'show_ui' => true, ...
2
votes
1answer
29 views

Unable to get Wordpress auto update working on Ubuntu 12.04

I'm getting a tiny bit fed up with having to chown 777 my entire Wordpress folder in order to auto update a plugin, and then set the permissions back again. I've looked around for fixes now, but no ...
2
votes
0answers
32 views

Allow acces to wp-admin in wordpress [duplicate]

I am trying to restrict access to wp-admin: only administrators and editors should be able to access it. At the moment I am using this function: function restrict_admin(){ //if not administrator, ...
1
vote
1answer
111 views

Wordpress widget args - classname?

Could someone explain to me what "classname" in the $widget_ops array means when you're creating a custom widget? It doesn't seem to have any relevance. I've searched both the source and the db and ...
0
votes
2answers
28 views

Wordpress update and plugin install not working

I am working on a website that I installed WP on a few months back but haven't worked on beyond the install of WP and a theme. I went back to it today and needed to update WP and install a few ...
0
votes
1answer
18 views

Will I lose the pages I've created within a default Wordpress theme when adding a new theme?

Will I lose the pages I've created within the default Wordpress theme when adding a new theme or will a new theme accommodate the same structure and content already created. I'm new to Wordpress and ...
0
votes
1answer
56 views

Contextual help in wp-admin for non admins

i'm having a problem. I have my WP with custom roles, capabilities and so on.. But i'm having a problem in displaying the context help (in top right corner). If i log in as admin-it's all right - it's ...
0
votes
1answer
117 views

Wordpress Relative Path

I have multisite blog for 2 languages, and I want to easily switch it. www.example.com/page/post I would like to switch to www.example.com/english/page/post I have get_blog_option(2, 'siteurl') ...
0
votes
1answer
119 views

Get Page URI for QR Code PHP

I'm using the QR Code Tag plugin and can't get this to work. <img src="<?php global $qrcodetag; echo $qrcodetag->getQrCodeUrl('$_SERVER['PHP_SELF']',100,'UTF-8','L',4,0); ?>"> I ...
0
votes
0answers
4 views

Can you make a special message for private Wordpress page? [duplicate]

If I set a Wordpress page to private, can I have it show a message instead of a 404 page for public users?
0
votes
1answer
32 views

How to handle high load of traffic of my server

Soon, my website will have much traffic due to an event, is there anyway or any service that will help me to handle all the traffic without my website goes down? I'm using WordPress running on Nginx ...
0
votes
0answers
13 views

Wordpress: Sort post via terms [duplicate]

Possible Duplicate: Using wp_query is it possible to orderby taxonomy? $args = array( 'tax_query' => array( array( 'taxonomy' => 'people', 'field' ...
0
votes
1answer
32 views

Using a specific template for front page only

I am using supersized full slider for my themes, but it need all the script and stylesheet gets enqueued before wp_head. So it becomes the part of the header. Now whenever I use the header template ...
0
votes
1answer
68 views

Extended registration form in WP

I've been trying to find a solution to add extra fields (not only text, but radio-buttons as well) to the registration form, without any luck. I can't believe there's no plug-in currently out there ...
0
votes
2answers
60 views

List posts that are in the same category as the current post title

How would I call out additional posts that have a tag by that matches the current post's title? For example if the current posts is titled "opossum" I would like teasers from all posts tagged with ...
0
votes
1answer
149 views

Symbolic Links for themes - linking one theme to many wordpress installs

This discussion relateds to plugins: Symbolic Links on dev box with plugins and stylesheets I was wondering if the same problem exists for symlinking a theme to many different wordpress installs. ...
0
votes
1answer
451 views

My new WordPress blog keeps refreshing in Chrome browser

My new WordPress [blog]: http://wuyajun.info/ keeps refreshing in Chrome browser, gets loading error in Firefox, but works normal in IE. Plugins installed that may cause the problem: Facebook AWD All ...
0
votes
1answer
425 views

WP No Category Base breaks pagination system on WordPress 3.2 [closed]

I am using WordPress 3.2: With custom permalinks set to /%category%/%postname% WP No Category Base plugin WP-PageNavi plugin But the WP No Category Base plugin breaks pagination system :S For ...
0
votes
1answer
310 views

PHP code in WP-Polls templates [closed]

I am using wp-polls for voting system. I need to include some php code within the wp-poll templates, but somehow the php code is not getting executed. I also installed php-exc plugin with no success ...