Tagged Questions
0
votes
1answer
19 views
Get category ID after creating a category - wordpress
I am creating two categories within my functions.php file when my Wordpress theme is activated like so:
/**
* @desc Create categories on theme activation
**/
function create_my_cat () {
if ...
0
votes
0answers
11 views
Wordpress - Showing And Not Showng Category On Breadcrumb
I have this code in function.php
elseif ( is_single() && !is_attachment() ) {
$cat = get_the_category(); $cat = $cat[0];
echo get_category_parents($cat, TRUE, ' ' . $delimiter . ' ');
echo ...
0
votes
2answers
10 views
wp_get_attachment_image does not return medium sized images
I read through the codex for these 2 functions:
wp_get_attachment_image
http://codex.wordpress.org/Function_Reference/wp_get_attachment_image
wp_get_attachment_image_src
...
0
votes
0answers
11 views
Echo Forum Post Count On Wordpress Page
I've installed mingle-forum plugin onto my wordpress blog, and I want to echo out the post count for a specific forum id on a page in my blog. Any help would be appreciated. Ive tried including this ...
-1
votes
1answer
27 views
Unexpected T_Public on function.
I am trying to extend a background image control in the Wordpress theme customizer. I have been trying to get this code right and now that I think it should be working I am receiving an unexpected ...
0
votes
2answers
35 views
Advert by categories inside the posts on function.php
I tryiend to add a banner inside the posts by categories. I got the follow code which show a banner after 1000 words. But, for example I want to show a banner if is a category 3 and a different banner ...
0
votes
0answers
43 views
how to Call a function from wordpress plugin settings page on a button click of wordpress plugin
I m new to a make a plugin..Basically i want to have one update button in my plugin option page which will call few function from my plugin page ..
My option page looks like this
<div ...
1
vote
1answer
72 views
Php function returns always zero
I've a form with a password field
<form id="form-login" class="row-fluid" novalidate="novalidate" method="post" action="#">
<input class="span12" type="password" name="password" ...
1
vote
1answer
69 views
JavaScript in Wordpress - Functions cannot be called
I've searched StackOverflow for the past 2 days and haven't found a solution to this. I'm trying to do something extremely basic but WordPress has me pulling my hair out.
I have a JavaScript file ...
1
vote
1answer
66 views
paginate_links() outputs “paged=” to link instead of “page=”
I've been having a sever and completely unsolvable problem with pagination.
I did notice however this interesting point:
I search a keyword like cute:
...
0
votes
2answers
29 views
Wordpresss do_action function assistance
I am trying to introduce myself to a Wordpress and after I installed the theme and went into it to do some edits, I found this call:
\wp-content\themes\catch-everest\footer.php
do_action( ...
1
vote
2answers
30 views
Show image thumbnail and paragraph with summry [closed]
I'm working with WordPress and can't seem to get the function I'm looking for. What I want to do is something similar to Smashing Magazine, where you show the first paragraph and image in the post on ...
0
votes
2answers
12 views
Current path in functions.php
How can I get current path of my page?
I know how to do it on my template, but I need it on functions.php.
And it has to be before send_headers hook, because I´ll use this info to set a cookie.
I ...
0
votes
0answers
60 views
PHP Variable Array for Function Names
I'm trying to implement some hooks into a WordPress theme, but rather than write out every function with repetitive code I was wondering if I could use an array to declare the functions instead.
E.g. ...
0
votes
3answers
46 views
jQuery function only on certain pages
I'm trying to trigger a function for different wordpress pages.
I would like a different "slice" of my jquery accordion to open dependant on the page which is loaded.
I have tried
if ( is_page( ...
0
votes
1answer
55 views
Galleria plugin in wordpress not working in ie or chrome
I have been searching all yesterday and the greater part of today to find a solution but have not come up with anything. I am creating a word press site for a client. I am using Galleria as a main ...
0
votes
1answer
53 views
How to check the function name if already exists in wordpress?
I created the two small wordpress plugin in a seperate field. That menu title is displaying under the settings of admin page Because of I created this like
...
0
votes
0answers
61 views
Wordpress Author Pages Go to 404 for Site Users Except Only Working for Admin
I am trying to use the Wordpress author pages as public profiles for my users on my site. I want to display a author page for all user, that includes subscribers, authors, editors and admins.
okay ...
1
vote
4answers
48 views
Load in words, not letters [WordPress/PHP]
I hope someone can help me out.
I'm working on a website where I installed Wordpress. On the frontpage I have a small div where I want to output the first 10 words from another page with pageID.
At ...
1
vote
2answers
45 views
'1' digit appearing under sidebar of wordpress website
Earlier in the afternoon, I had asked for a solution on how to echo different sidebars on different category pages of Wordpress which was solved. Now the problem which I am facing is that there's a ...
0
votes
2answers
57 views
Ho do I add/require a full php file into a variable in a function
I'm building in Wordpress and have some content that loads in using jQuery.load.
$item = '<h2>'. the_title() .'</h2><div>'. the_content() .'</div>';
//$item = include ...
0
votes
2answers
34 views
Wordpress - show last 5 posts - leave reply issue
I made a question previously on SO to get help with a show last 5 posts from specific category issue. This was resolved, but presented a new issue and is ONLY apparent when i use the shortcode.
The ...
0
votes
4answers
77 views
Show last 5 posts from specific category (Wordpress)
I'm trying to show the last 5 posts from a specific category, which will be linked to a function so i can insert the shortcode in a Wordpress page. The code i have is as below, it does everything i ...
0
votes
1answer
30 views
image is shown “outside” loop in wordpress function shortcode
I have made a shortcode from one or two guides, [news cat="1" num="5"]Title[/news] in functions.php in WordPress. Code as follows:
Create the callback function
function ...
0
votes
1answer
32 views
WordPress $wpdb->options returns blank
I am working on a WordPress theme and trying to use the $wpdb class from within my own theme class. When I try to use the following SQL query the $wpdb->options variable is blank and generates an ...
0
votes
0answers
32 views
Wordpress Post Gallery
For a wordpress blog, i have created a very simple image slider that uses cycle2 plugin ( http://www.malsup.com/jquery/cycle2/ ). I have used this because the use of responsive and also touch swipe ...
1
vote
2answers
40 views
Turn simple WordPress title script into a PHP function
I have this PHP code to construct the contents of my WordPress <title> tag:
<?php
global $page, $paged;
// Add a page number if necessary:
if($paged >= 2 || $page >= 2) {
...
-1
votes
1answer
27 views
How to rename the core files in WordPress theme programmatically?
Is it possible to create a custom function to rename theme files? For example: footer.php is the file; WhenIi activate a plugin it's renamed to footer1.php, or whatever. Any suggestions on how to do ...
0
votes
1answer
44 views
Remove footer text in the wordpress blog
I created the testing blog in that I found the footer message like
Proudly powered by WordPress .
How to remove those footer message without editing the core file there is the options to remove the ...
1
vote
1answer
45 views
How to reset the wordpress plugins without deactivate the plugin
function set_copyright_options() {
delete_option('ptechsolcopy_notice');
delete_option('ptechsolcopy_reserved');
add_option('ptechsolcopy_notice','Copyright ©');
...
-1
votes
1answer
50 views
How to building function for codeigniter such as Wordpress [closed]
I fetch data to views, with $article['article_title'] is article title
<?php
foreach ($articles as $article)
{
?>
<a href="#"><?php echo $article['article_title']; ?></a>
...
0
votes
0answers
22 views
URL Redirect in Wordpress
I am facing problem to redirect some url in wordpress. I need to rewrite following URL:
First URL is like this: http://example.com/news/?news=2 where news=2 is the news id and I am getting this id by ...
0
votes
0answers
25 views
Conflicting Code Restricting Post Deletion
I'm trying two things here:
1) Allow users to delete posts via the post view page with a delete link.
2) Redirect users to a custom dashboard page when they login.
The problem is when I enable the ...
2
votes
2answers
62 views
how to attach a page to a custom post type
This has worked for me in the past, so I am unsure why it is not working now.
I have created a custom post type:
add_action('init', 'register_team');
function register_team(){
$args = ...
0
votes
0answers
54 views
jQuery function to change div IDs not working on the new theme
Good Day, I'm trying to make this feature work from an old theme here http://client.gluedigital.com.au/windsorblinds/category/products to our new theme here ...
0
votes
1answer
61 views
displaying wordpress taxonomies in visual composer
i have a line in visual composer for wordpress which is as follows
$teasers .= '<li class="xyz">';
there is another piece of code :
foreach ( (array) get_object_taxonomies($post->post_type) ...
1
vote
2answers
70 views
if statements and function arguments
I have a function I have to fill out, and the only way I can see doing it is a mess. The function I have is:
public function($keys = array(), $pages = array()){}
Essentially the goal is:
If keys ...
0
votes
1answer
152 views
Replace &ct_= with %2c or comma
I've been wrestling with this function for far to long and I wish I had enough respect to offer a bounty. Help would be greatly appreciated.
// Advanced Search Check
function ...
0
votes
1answer
22 views
Unable to get var value inside function
I am trying to get field_1 value into the input text and I tried this code but it doesn't work.
function bbg_add_reg_field() {
$field_1= $_POST["signup_username"];
echo '<input ...
1
vote
3answers
312 views
Wordpress: custom excerpt length
I'm trying to figure out if it's possible to get an excerpt from each post, grabbing the first paragraph from each one. I'm currently using the ACF plugin and have custom post types and custom fields.
...
0
votes
1answer
120 views
Using require_once in PHP class fails to run functions [closed]
I am working on a WordPress theme where I want to move my require_once calls out of the theme "functions.php" and place them into a "Initiation" class.
I have a theme_functions.php file that I ...
0
votes
2answers
119 views
Wordpress conditional display of page title inside the the_content using functions.php
Quick overview:
I am trying to get the page title to display inside the_content(), however this needs to be conditional, and only display if the page has an attached image. This also needs to be done ...
0
votes
1answer
24 views
How to define a file/page using conditional comments?
I am curious as to how to utilize conditional comments to define pages/files with PHP.
This technique is used in WordPress; one can define the template file by inserting conditional comments at the ...
2
votes
1answer
85 views
Possible to pass variable to add_filter in Wordpress excerpt
Trying to get this to work, is it even possible to pass a variable like this?
function excerpt_read_more($output, $text) {
global $post;
return $output . '<a href="'. ...
0
votes
0answers
63 views
How to add predefined atts to the native gallery shortcode in the functions.php
I'm justing start developing this theme in WP and need a help to define atts to shortcod, directly in the functions.php. I aiming to give my client the less work possible, so he cant screw with any ...
-2
votes
1answer
35 views
create a function in header.php
i created a wordpress website theme and i want to create a function in the header.php that function should create a menu of one link that can be changed by using any way like for example widget
...
0
votes
1answer
47 views
using html tag for widget area title
I want to register a sidebar with my html custom title on Widgets area.
My register widget function like ;
register_sidebar(array(
'name' => __( '<img ...
0
votes
1answer
46 views
Add the “picture-” sufix to all images when uploading to Wordpress
I'm using this in my WordPress theme functions.php to sanitize all images filenames when uploaded:
function sa_sanitize_special_chars ($filename) {
return remove_accents( $filename );
}
...
0
votes
1answer
70 views
unserialize function not return value?
Hello guys i have problem with the unserialize function in php .Problem is that I have data in $test variable like
stdClass Object
(
[data] => ...
0
votes
1answer
82 views
Wordpress theme error Notice: Undefined index: activated
I am getting the below error when my page loads in wordpress. How can I prevent this?
Notice: Undefined index: activated in /home3/answ/public_html/wp-content/themes/tipztheme/functions.php on line ...




