WordPress is an open source content management system running on PHP and MySQL, and often used as a blog engine. WordPress questions not about programming are best asked on http://wordpress.stackexchange.com/
0
votes
0answers
5 views
Adding www. to domain name caused massive drop in traffic
I have a Wordpress site seriousfiver.com. Recently I signed up for the Google beta program PageSpeed ( https://developers.google.com/speed/pagespeed/ ). In order for PageSpeed to work, it needed me ...
0
votes
0answers
4 views
How to add multiple menus in Wordpress theme?
I am developing a new Wordpress theme, and I need two menus, the main menu, and the footer menu. This is what I have in functions.php:
if ( function_exists('register_nav_menus')) {
...
0
votes
1answer
24 views
Why do I get the link to the first image of a post instead of the image itself?
I'm trying to retrieve and display just the first image of a post on the main blog page...
But the only thing showing up is the link to that image, not the image itself!
Not sure what is wrong!...
...
0
votes
0answers
10 views
WordPress custom columns ($wpdb->get_results)
Custom columns
case 'views' :
global $wpdb;
$table = $wpdb->prefix . "simpleviews";
$query = "SELECT * FROM $table WHERE post_id =".$post_id; // print 0
$query = "SELECT * FROM $table"; // ...
0
votes
2answers
23 views
What is a Wordpress Term
I know it's a simple enough question, but after spending a fair amount of time trying to google this Question, I can't seem to find a straightforward answer.
What is a Wordpress Term?? I know it's ...
0
votes
0answers
13 views
Wordpress is not reacting on Javascript
I am working on one site with custom theme and I can not find what is making problems with Java script. Owners of site are not satisfied with idea changing theme or rebranding.
Problem is that in ...
0
votes
1answer
18 views
Getting a single value from a table dynamically generated by SQL and using it in another table in Wordpress
I currently have a table generated by a sql query. The url to the page is http://skunkboxstudios.com/dev/ofa-courses/
In the table, there is a button on each row that displays a modal window that ...
0
votes
1answer
10 views
Prevent direct access to php files in a Wordpress plugin
I am building a Wordpress plugin that should be used on my site only. I have placed it at the regular place under wp-content/plugins/myPlugin. In that directory I have placed an index.php to prevent ...
0
votes
0answers
2 views
Promoting Eventbrite events across the web
I'm looking for a way for Eventbrite events to be promoted across multiples websites (Wordpress installs) automatically when I publish from my Eventbrite account?
0
votes
0answers
9 views
wordpress mobile clickable phone number
Hi I am working ona client website 1234insurance.com and there is a graphic phone image in the header. The javascript uses the callto function. I just basically want the click to call functionality to ...
0
votes
0answers
6 views
Shortcode to show the (child)categories a post belongs to (1 post)
I'm looking for a shortcode to add in a post in order to show the categories a post belongs to.
An example. I have a category 'region' with some subcategories :
Region
region A
region B
region C
...
0
votes
0answers
7 views
Multiple Custom Post Types, Same URL Structure
For some reason I can not create multiple CPT with the same URL structure, for instance I can not get the following to work:
/cpt1/overview
/cpt1/events
/cpt2/overview
/cpt2/events
What ends up ...
0
votes
0answers
18 views
Simple widget in wordpress
I want to make a simple widget, that contains only 3 radio buttons, and selected button, to be displayed on theme. I got the part with MyWidget extends WP_Widget and after that the 4(3) functions ...
0
votes
0answers
5 views
Wordpress User Registration with Aweber
I'm looking into a membership website that will let customers signup as a free member. However, I also want the form to sign them up to aweber. Is there a way to do this?
Basically, the Wordpress ...
1
vote
0answers
7 views
Wordpress Delete User after Success
I have a form we want users to access only once, anonymously. We hand out randomly generated usernames and passwords to allow anonymity. I would like to delete user, log off and redirect after ...