The part of a site that visitors see and is controlled by the currently active theme.
0
votes
1answer
20 views
How to auto strip hyperlinks & images in wordpress post
I creat a post form on front-end for wordpress members by use DJD Site Post plugin.
Plugin url: http://wordpress.org/extend/plugins/djd-site-post/
And now i want to auto strip all hyperlink & ...
0
votes
0answers
10 views
Three level taxonomy dropdown frontend
I have a code in my functions.php to display 3-level taxonomy dropdown:
$brand_taxonomy = 'county';
$taxonomy_name = 'Vietovės pasirinkimas';
...
1
vote
1answer
21 views
Responsive Images - Generating multiple images from Theme Customizer control upload?
So, after poking around in the code it looks like the filter image_make_intermediate_size is not called by the various WP_Customize_Control() classes at either WP_Customize_Image_Control() or it's ...
0
votes
0answers
28 views
Plugin frontend with themes
I'm developing a calendar plugin and i need to show my content like a page, how i integrate my plugin file with themes?
I created a index.php file in my plugin directory and load the get_header() ...
1
vote
1answer
11 views
How to use Yoast SEO backend in english even if WPLANG variable is not english?
I added this code to my functions.php file
add_filter('locale', 'wpse27056_setLocale');
function wpse27056_setLocale($locale) {
if ( is_admin() ) {
return 'en_US';
}
return ...
0
votes
0answers
32 views
User driven content problems
I am trying to build a website that will allow users to post from the front end. I need to be able to have the user enter a title, a category, and tags. For the content of the post, I would ideally ...
0
votes
1answer
39 views
Widget Development - Displaying dropdown content
I'm using the following code to create a widget to select a post from a dropdown - which works fine in the backend, but I can't figure out how to display this on the frontend...
<?php
class ...
0
votes
1answer
29 views
Check in function on custom page
I have a website about places and attractions in my country. Each place/attraction is a different custom post. On this page, i would like to add a button with the value "Check In" and if clicked by a ...
-1
votes
1answer
21 views
How can i hide content if not friend in Buddypress?
How can I hide some specific contents or div or other stuff depending on being friend or not in buddypress ??
I tried to use the bp_is_user_friends() function but it did not work !
0
votes
1answer
20 views
Change Post Status From Front End
I am using the code in a page below to let users delete their posts from the front in. I have wp-admin totally blocked off to site users.
What i want to do is when they click the delete button the ...
0
votes
0answers
24 views
Saving term using “suggest” script and “ajax-tag-search” action
I am building a front-end post edit / create form. The form uses an auto suggest for taxonomy, powered by built in suggest script & the ajax-tag-search action. The script is working fine, but I am ...
0
votes
0answers
12 views
Let users create a new custom taxonomy entry from frontend
I had created a custom taxonomy "group", and new post type named "topic". there are some terms under custom taxonomy "group".
Use the following code, i can create a new entry from frontend in ...
-1
votes
1answer
83 views
Front end post form won't post categories to custom post type
Trying to get a front end post form to work with my custom post type. It posting to the post type but the 2 custom taxonomies and the tag field aren't posting/saving.
Here is my CPT.
...
0
votes
1answer
85 views
Post visibility option to theme front-end for author to select?
Is it possible to present author with an option to select visibility of a post (public, private, password) on theme front-end post adding without messing with Wordpress core?
Any suggestions are ...
0
votes
0answers
10 views
front end category change
Hey I'm looking for a simple way to change the category of a post from the front end. How could this be possible? (I really don't want to use have front end editor plugins, and I want to use a short ...