Covers all flavors of HTML: HTML5, XHTML and old-school HTML 4.

learn more… | top users | synonyms

0
votes
2answers
69 views

Is it possible to isolate and use Wordpress functions outside of wordpress

I'm seeing a lot of jobs on elance and vWorker for converting html to wordpress? what's the general process for doiing this? hunting and pecking through the codex? what happens when you get to some ...
1
vote
2answers
271 views

Why is WordPress changing my HTML code

I've been playing around with CSS and HTML code and I finally got to the point where the section I was working on works. I saved my CSS, and updated my post, and everything looked great, but when I ...
0
votes
1answer
310 views

Allowing users to add HTML to BP Groups Description how can I error check html of users?

I am trying to modify the Group Description field on Buddypress Groups so that they can take HTML but Buddypress has filters to prevent this. I used this; remove_filter( 'bp_get_group_description', ...
0
votes
1answer
89 views

Wordpress background image not changing [closed]

I have installed a complete blank theme with no CSS in my new wordpress blog. I have been trying to give it a background image but no success. I am working on blog's content. Blog is very new. So, ...
0
votes
2answers
374 views

How to include this jQuery File in wordpress?

Ok I have this jQuery that I have tested in a static html page and it works fine. How would I include jQuery to work on wordpress in a plugin? So this is the html page. <head> <title> ...
0
votes
1answer
60 views

Insert data through a script directly in the db

is it possible to insert data through a script or HTML site into the wpdb and this will show up as normal article in the, the same as when I use the 'create new post' page? Which tables are affected ...
3
votes
3answers
166 views

WordPress function that makes HTML safe to be sent via AJAX request

What is correct way to send HTML back to an AJAX request in WordPress? I currently have this: add_action( 'wp_ajax_nopriv_get-location-info', 'sc_locations_get_location_info' ); add_action( ...
0
votes
1answer
1k views

How can I insert an image map into a Wordpress blog post?

I'm trying to insert a custom image map into a blog post, so that clicking on different parts of an image at the top of the post will lead to anchors in other parts of the post. I have generated the ...
1
vote
2answers
381 views

Get entire page content (generated HTML in browser)

I'm looking for a filter that provides the full page generated in WordPress - including the head section with meta tags, body, styling and dynamic content. the_content() and the_excerpt() do work only ...
0
votes
1answer
324 views

Programming Wordpress to send a custom-built form to specified email address

I have built a custom html/javascript form that I would like to incorporate into my blog. I would like the submit button of the form to send the information to a specific email address. Is there a way ...
0
votes
2answers
306 views

Editor html formatting is different from view source

Here's what I see when I click on the HTML tab in the editor... <div style="margin: 10px 0;"><a href="test.jpg" rel="nofollow" target="_blank"> <img style="float: left; margin: 10px; ...
0
votes
1answer
132 views

allow html characters on eshop data entry boxes

I'm trying to make a change on the core eshop plugins, since on their forum they don't support core changes I'm posting my question in here. Maybe is kind of simple however I cannot find the ...
0
votes
2answers
485 views

Insert the current theme header into an external HTML/XHTML file

My Emacs org-mode projects get exported to XHTML files. I would like to loosely integrate them into my blog. In particular, I'd like to use the header (and possibly footer) from my theme in the ...
0
votes
1answer
406 views

Using a form to post to an external URL from within WordPress [closed]

I'm trying to use a form to post data to an external URL, and I'm completely stumped by this problem. The exact code I'm using is: <form name="login" action="https://www.example.com/" ...
0
votes
1answer
117 views

Wordpress custom post type and taxonomy

So I have a custom post type called Video and a taxonomy called category that I use to group videos togheter, so I want to list them like this: Taxonomy NAME 1 VIDEO 1 VODEO 2 Taxonomy NAME 2 Video ...
0
votes
1answer
131 views

html to wordpress plugin

I'm looking for a plugin, or other stuff to convert (import) my html/css/javascript into wordpress quickly. I've made some research about this but I've found a lot of solutions(tools,plugins) and I'm ...
0
votes
2answers
63 views

HTML tables in content areas

Is there a plugin that would allow me to create and edit tables within the content block in posts and pages? I suppose a bit like the 'insert table' command in MS Word.
0
votes
1answer
172 views

Is there a syntax highlighting plugin for HTML View? [duplicate]

Possible Duplicate: Syntax highlighting for post/page editor I've googled this already to no avail, all I'm finding are syntax highlighting plugins to post actual code to the front-end of ...
0
votes
1answer
286 views

how to insert a HTML form into a javascript popup?

I'm working on a plugin that generates a list of candidates as output. For each candidate there is a link (View Details) that once is clicked, a popup appears. I need to put a simple contact form into ...
0
votes
2answers
86 views

Locally change the font family [closed]

I'm using the standard Wordpress theme (WordPress Default 1.6 by Michael Heilemann). The standard font for my articles is a sans-serif font. I'd like to display, for a sentence only, a serif font ...
1
vote
1answer
56 views

Protect HTML in Comment

In wordpress comments system, it work HTML. I want to protect inserting HTML in wordpress comment system.
0
votes
1answer
1k views

How to display recent posts on home page with custom HTML

I am looking to display x (undecided) number of recent posts (no more than 10) on my home page. For each post, I would like to display the title and a snippet of the content. I can whip up a SQL query ...
2
votes
2answers
569 views

Add .html extension to only one page in my Wordpress site

We had an old site that had html pages in it. One of the pages in that site was linked to from many other sites. Now we moved to a WordPress site, and we created a page with that name, but of course ...
0
votes
2answers
146 views

How to make modifications only to certain elements of an HTML string on the server-side?

Is there a similar way to select / perform DOM manipulation on the server-side (PHP) like the way jQuery works? For example, if I wanted to modify content of each <pre ...
0
votes
1answer
64 views

add html to static posts page. [closed]

I'm using static page for the front page display. I also have a page listed as posts page. I would like to know how to add html to this page. When I do add this it doesn't appear. <div ...
0
votes
1answer
210 views

How can I wrap html around the output of the_time function?

My current code in functions.php: echo '<div class="post_date">'.the_time('d', '<div class="month">', '</div>').the_time('F', '<div class="day">', ...
1
vote
3answers
222 views

Why the JavaScript code is ignored from wp editor?

In WordPress when i publish a page with JS code is ignored and don't returns anything. How can I make sure that when I write a HTML+JS code will be converted to output?! Like: <a class="print" ...
0
votes
1answer
56 views

theme or plugin or server is outputting html before the init hook fires, how is it possible to prevent this

I have a plugin that detects the useragent of a request made during the init hook and if it matches my desired value, I set a flag so that my own xml content is sent during the found_posts filter ...
3
votes
4answers
11k views

jQuery UI Datepicker not working

i want to add a datepicker on a custom page but i doesn not work. WP version is 3.2.1. Those are the init string i used on wp code: wp_enqueue_script('jquery'); wp_enqueue_script('jquery-ui-core'); ...
1
vote
4answers
518 views

HTML / Javascript in custom field textarea?

Is there a filter for allowing HTML / Javascript into a custom field textarea? I'm using get_post_meta. On the frontpage I want the HTML / Javascript to run, not to be displayed.
0
votes
3answers
339 views

How to get the second slug of a page url?

I have posts with a custom field called year. The year ranges from 1900 to 2011. I want to create an individual page for each year which will displays the posts with that year. So I will be creating a ...
-1
votes
1answer
352 views

WordPress HTML editor panel is not showing HTML elements

The problem After typing my post/page in the visual editor, when I switch to the HTML editor, the expected HTML elements do not show. Headings appear but paragraphs and divs do not. A minority of ...
-1
votes
1answer
129 views

Implement “No related posts for this entry” into the loop?

For my related posts I have set up a scrollable container. I need the HTML to be outside of the loop or otherwise the layout will be a mess if there are no related posts to display (missing divs that ...
0
votes
2answers
307 views

How to list Tags using get_tags in an html table?

Any suggestions on the simplest way to display tags using get_tags in an html table (4 columns across) ? Example: Tag 1 | Tag2 | Tag 3 | Tag 4 Tag 5 | Tag 6 | Tag 7 | Tag 8 I'm using the ...
3
votes
1answer
704 views

Wordpress custom taxonomy description for each post?

In a Wordpress blog, I'd like to put the term description of a specific custom taxonomy in the footer of each article. Is this possible? I've tried <?php term_description( $term_id, $taxonomy ) ...
0
votes
1answer
330 views

Why does hitting enter in Visual Editor add <p> instead of <br>?

Why does hitting the enter key in Visual Editor add <p> instead of <br>? What I want sometimes is a new line that starts immediately after the previous line. Unfortunately, the visual ...
0
votes
1answer
242 views

Right align a youtube video

I'm trying to right align (class="alignright") a YouTube video AND allow my client to edit the surrounding text in the future using the visual editor. I simply added class="alignright" to the tag ...
1
vote
3answers
62 views

How Do I Figure Out What File(s) to Edit from Looking at the Source Code [closed]

I just started working at a company and they have a website that was partially completed by another designer and have hired me to complete and make changes to it. It seems that most of the website was ...
0
votes
1answer
385 views

Wordpress plug-in for dynamic download link?

I am using Wordpress and I like to serve a page with a link to download. That link points to a new file EACH DAY. Is there a plugin that can do this? Store a list of filename per day Rotate each day ...
1
vote
1answer
1k views

add_filter the_content str_replace after shortcode

I want to add a PHP str_replace to the add_filter('the_content') function. I believe my problem is that the shortcodes are loading after the str_replace is called. I have a shortcode that outputs a ...
0
votes
2answers
863 views

How to allow YouTube object embed in Wordpress 3+?

I admin a Wordpress blog with a few dozens of users. Since we upgraded to version 3.1+ my users can't insert the YouTube embed tags into a post ( wordpress or TinyMCE removes them ). When I'm ...
0
votes
1answer
664 views

How to use JQuery Marquee in Wordpress?

I'm using <marquee> in my homepage , I want to use jquery marquee instead , I've added script in my header , in usage it says i have to use "$('marquee').marquee(optionalClass);" , how and ...
0
votes
2answers
1k views

Flash Intro is embedded in a html, how do I integrate as my first page

I still learning how to work with WordPress. I know little of php. I have a flash intro that was done in a html file. I would like to find out how to integrate this as the first page on the website. ...
0
votes
1answer
215 views

Forcing absolute <img> src links in the RSS feed

We are using relative image URLs in the post's HTML code. Looks like relative src links break on many RSS readers. By default, Wordpress does not seem to prepare post's HTML for feed too much. Does ...
3
votes
1answer
3k views

Is there a way to send HTML formatted emails with Wordpress' wp_mail function?

Is there an action_hook or something similar that could help me achieve this? I tried adding markup in a PHP string variable and just fired off an email with the wp_mail function like so: $email_to ...
0
votes
2answers
149 views

What makes WP so SEO friendly?

I keep hearing that Wordpress is the best SEO solution, better than most static websites because of multiple reasons. I then go on to hear contradicting information elsewhere. So: Is Wordpress ...
0
votes
1answer
175 views

Positioning page content with CSS is making certain links on page unclickable [closed]

Note: I don't have any training in HTML or CSS or doing things correctly, and also am not very clear on computer programming terminology, so please forgive me (and correct me!) if I use words ...
1
vote
1answer
222 views

Why would a GET variable one one page of a site cause a 404 error when a GET variable works on another page of a site?

For example I have 20 pages on a site. one of them is called bacon another called eggs. on the same site...lets say breakfast.com I have the permalinks set up properly and have used them ...
1
vote
2answers
680 views

Add Piwik Tracking code to page

I use piwik analytics to track the visitors to my website. I recently created a blog on WordPress and wanted to added the same tracking code that I use on the plain HTML webpage. How can I added the ...
0
votes
3answers
474 views

Have Wordpress post redirect to url when accesed from iPad (Safari)

Since the Ipad doesn't work nicely with issuu I'm trying to set up a system where if users would acces one of my blog post from an ipad device they get redirected to the a pdf file which is on my ...