0
votes
1answer
86 views

Query multiple taxonomies group slugs

I have a checkbox function that I'm using for my search query. My problem is the url created when I search. ...
1
vote
1answer
160 views

Add variable to link in wordpress archive widget

I've got a problem with the default wordpress Archives widget. I want to add a variable to each link it outputs. But for some reason it doesn't seem to add the variable to the link or any normal text. ...
0
votes
1answer
90 views

Target str_replace() to work on only one element in wp-admin

Is it possible to use PHP's str_replace() function to target only select DIV's within a page (identified by ID or classes for example)? The situation: I'm using the following str_replace() function ...
0
votes
1answer
43 views

How to remove empty tags left by <the_date> in Wordpress

Wordpress doesn't support adding styles to the_date the way wp_nav_menu does, so we have to code the style outside the function. While it's handy that the_date will only show up once each day, it ...
0
votes
2answers
92 views

strtolower and similar functions with wordpress php

Hi am trying to figure out how to use the strolower function and strtolower + str_replace function with the following code - <?php echo get_the_author_meta('custom_field_35', $user->ID); ?> ...
0
votes
0answers
210 views

how to remove category in breadcrumbs

I'm trying to figure out how to edit this template for creating breadcrumbs. I have a gallery page that has pictures on it. when you click on a picture, it takes you to a page. These pages have ...
0
votes
1answer
137 views

str_replace, replacing word with div causes break in p tag

The code below searches WordPress content for words and replaces these words with a link and a div. It creates a problem where the div closes the <p> tag it was inserted into. $myposts = ...
0
votes
0answers
118 views

How to change post title link destination in WordPress RSS feed using str_replace?

This question is regarding a WordPress installation that is using the same database from another WordPress website installation (but the 2nd website uses a different template). In other words, ...
1
vote
0answers
86 views

How to search and replace matched text with PHP unless found within an HTML tag?

How can I search and replace all occurrences of a word or phrase of a string, unless it's been located within an HTML tag? Currently have this: <?php public function ...
0
votes
3answers
70 views

Issues with str_replace

First, the string is being pulled from an XML file. There's a special character that I am trying to replace: '£' When I use str_replace like so: $ability1 = str_replace("£", "", $ability); This ...
0
votes
2answers
185 views

Identifying mystery line break / char(#) / control characters for removal (via php)

I have a client that has just moved a very larger, well established wordpress site to a new host. He has a series of JSON api's delivered via a plugin that have stopped validating (killing a mobile ...
0
votes
2answers
193 views

using str_replace to replace anything inside a link text (anchor text)

I am using str_replace to replace anything inside a link text (anchor text). I want to replace the word 'SMS' from the anchor text inside a wordpress category name, <?php echo ...
0
votes
0answers
235 views

Problem with str_replace in wordpress shortcode function?

The other day I was trying to write a short-code function for a WordPress 3.2.1 blog, by which I could enable authors to insert html span tags into post titles in single post view (i.e., insertion ...
0
votes
1answer
111 views

str_replace is replacing string on wrong place

I am redesigning template mechanism of my one of the wordpress plugin. So the users can customized design as per their need. For this purpose. i am asking a template format string with some options ...
0
votes
1answer
273 views

php str_replace dynamic url in header.php?

hey guys, a little weird question that doesn't actually need to be associated with wordpress. i want to test a wordpress website on my iPhone. since i'm in the same network, i can simply call my ...
1
vote
1answer
151 views

Replace an array of strings in content for Wordpress

I'm working on a music blog that provides review scores ranging from 0.0 - 10. Since the authors already developed their system of typing in the score in the content, I'm trying figure out a way to ...