marc0047
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Putting a Link in an Image CaptionThis seems like the definitive method to add links to captions without extra coding or any plugins:
1. Enter HTML mode
2. Add link in the caption=”[…]” markup
3. Be sure that the link is applied with a single (‘) quote NOT a double (“) quote. If a double quote is applied WP cleans it out.Forum: Fixing WordPress
In reply to: Putting a Link in an Image Caption+1
Please allow me to place a link on any set of words in the caption. This is still happening in WP 2.9.2.
Forum: Fixing WordPress
In reply to: Gallery Attachment Page: Adjusting the image sizeWorked! Thank you!
Forum: Plugins
In reply to: art gallery image attachment sizeI’d like to know the answer to this too: basically, how do I control the size of the image in the attachment page?
Forum: Fixing WordPress
In reply to: Gallery won’t show up in my custom themeI found the problem: I’m using some of the Sandbox functions in my functions.php, and there is a function called sandbox_gallery($attr) which appears to be removing the markup for the built-in gallery.
I removed it, and it is working now!
Forum: Fixing WordPress
In reply to: Gallery won’t show up in my custom themeAlso, any leads in documentation on how to properly add the built-in Gallery function to your own theme would be great! I can’t seem to find the right keywords to fins the right documentation.
Forum: Fixing WordPress
In reply to: Gallery won’t show up in my custom themeI am using the_content(); in index.php.
I should also add: none of the gallery markup is showing up. Only the paragraphs, images, etc. are showing up in each of the posts of my theme.
Forum: Fixing WordPress
In reply to: permalink from the homepageThis is not a direct solution to the previous_post_link problem, however, if you have set up a homepage with the latest post, there is a way to have the latest post *be* the homepage url/permalink. Use just this code in home.php:
[?php
query_posts($query_string.’&posts_per_page=1′);
the_post();
wp_redirect(get_permalink(), ‘302’);
return;
?]Forum: Fixing WordPress
In reply to: Homepage jumps to latest postA very resourceful friend figured it out:
[?php
query_posts($query_string.’&posts_per_page=1′);
the_post();
wp_redirect(get_permalink(), ‘302’);
return;
?]Forum: Fixing WordPress
In reply to: permalink from the homepageAlso, if there is another way to rethink this problem, I’m open to suggestion!
Forum: Fixing WordPress
In reply to: permalink from the homepageI’m trying to achieve the same effect to for my homepage (home.php) template: I want to display only the latest post on the homepage, but allow the user to go back one post at a time chronologically. Unfortunately, the previous_post_link only works in permalinked pages (single.php):
https://codex.www.ads-software.com/Template_Tags/previous_post_link
Does anyone know if there is a way around this: to get the previous_post_link function to work on home.php.
Forum: Fixing WordPress
In reply to: How do I display permalinks of files in the Media Library@abelq: That’s helpful, thank you!
However, I need the files list output automatically to save on time if, for example, I have 5-10 files per post.
Anyone else with a tip on how to do this automatically?
Forum: Plugins
In reply to: How to use functions.php to override core WP functions?Figured it out! The solution actually already exists in the default/ theme folder:
<?php if ( function_exists('register_sidebar') ) register_sidebar(array( 'before_widget' => '<li id="%1$s" class="box %2$s">', 'after_widget' => '</li>', 'before_title' => '<h2>', 'after_title' => '</h2>', )); ?>
I just changed the settings for the ‘before_title’ and ‘after_title’ to <h3>. Voila!
Forum: Plugins
In reply to: Changing a Widget title to an ImageI just thought of a very simple hack around this: Don’t use the given ‘Title’ feature of each widget box.
*Instead*, just put the title and the body content into each widget box. This way a ‘fake’ title setting (h2, h3, etc.) can be assigned. For example:
Title: [blank]
Body:<h2>This is my fake widget title</h2><p>This is my content</p>
Voila!
Forum: Plugins
In reply to: Changing a Widget title to an ImageI have the same request to use HTML inside the Widget’s title. However, I would like to use anchor tags, and that unfortunately does not have a CSS solution.
I’m not terribly familiar with creating over-riding functions: Can anyone show us how to create a function that will allow us to include HTML elements in the Widget’s title?
Any help would be great!