ale3andros
Forum Replies Created
-
Forum: Plugins
In reply to: Plugin that turns IPTC information to WordPress TagsHello again,
after doing some research I found this:
https://www.hireustoday.com/wordpress/other/wordpress-get-iptc-metadata-from-pictures/
Now, I’ve made the changes in the image.php file under wp-admin/includes
I am guessing the next step is to do what the guy says :The function wp_read_image_metadata can be invoked by eg:
$iptc_data = wp_read_image_metadata( $file ); echo ‘Keywords : ‘ . $iptc_data[keywords] . ‘’; echo ‘City : ‘ . $iptc_data[city] . ‘’; echo ‘State : ‘ . $iptc_data[province] . ‘’; echo ‘Country : ‘ . $iptc_data[country] . ‘’;
So would this go in the functions.php file in the wordpress theme i’m using?
And, then should I call this function in the single.php file of the theme?Does anyone want to help me do this right?
Anyone with some insight on this?
Forum: Fixing WordPress
In reply to: Another (new) solution to Media Upload problemsHi,
I am very happy i came across this as i’ve been trying to find a way of uploading images onto this blog (https://www.bomon.me) with IPTC tags but have failed to do so, so far.
Would you be kind enough to help me figure this out with the xml parser solution?
Many thanks
Alex.Forum: Themes and Templates
In reply to: Grace PhotoblogI did this more than once
but nothing…Forum: Fixing WordPress
In reply to: Newsfeed? Getting the latest posts in a seperate page….wow.
so much to read.So, this is not a code i could copy into my index.html file…?
this looks like something i’m looking for… :
Last three posts
Display the last three posts on your web page.// Get the last 3 posts.
<?php
require(‘/the/path/to/your/wp-blog-header.php’);
?><?php query_posts(‘showposts=3’); ?>
<?php while (have_posts()) : the_post(); ?>
” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?>
<?php endwhile;?>i’m looking for the path of least resistance here since this is something i’m doing almost for free…so u understand, i need to be quick!
thanks for your prompt replies!
Appreciated.
Until soon.
Alex.Forum: Fixing WordPress
In reply to: Newsfeed? Getting the latest posts in a seperate page….Thanks,
So, to get this straight….It all happens within WordPress?
I was hoping to create a page on my own and then insert this function in it.
Not wanting the static front page to look like the blog. Want to design it from scratch.Are there any examples of what you are suggesting?
Forum: Installing WordPress
In reply to: Log-in page on the server sends me to the Localhostnever mind.
i made a mistake and never replaced my localhost with my server details in the sql file.
xForum: Fixing WordPress
In reply to: Need some help with PHP Thumbnail generatoroh that sounded complicated in my head. Not so sure about this. I will read and get back to it.
thanks anyway!
Forum: Fixing WordPress
In reply to: Horizontal Menu in Header.php…..not properly workingANYONE? pleaseeeeeeee ?? ?
Forum: Fixing WordPress
In reply to: How to create a photoblog within my main blogSo, in case it isn’t clear,
the gallery would work as a blog within the blog…
Possible?Forum: Themes and Templates
In reply to: Designing WordPress to look like an article based magazineYes,
something like that
But with the option of maybe resizing/or zooming in each “article” for you to read the whole thing. They also should be clickable and that would take you to the basic blog page with the article.Sounds reasonable?
Forum: Themes and Templates
In reply to: Designing WordPress to look like an article based magazineCan i use this with WordPress???
https://pupunzi.open-lab.com/mb-jquery-components/mb-containerplus/
Forum: Fixing WordPress
In reply to: I want my posts to be shown in other order than DATE ADDEDok thanks
I will try a few things when nearer the time!Forum: Fixing WordPress
In reply to: Header Image linkWell actually
after trying this :<div id=”header”>
<h1>/”>
<?php bloginfo(‘name’); ?>
</h1>
</div>to:
<div id=”header”>
“>
<img src=”https://example.com/headerimage.jpg” alt=”<?php bloginfo(‘name’); ?>” />
<h1>“>” title=”<?php bloginfo(‘name’); ?>”>
<?php bloginfo(‘name’); ?>
</h1>I saw TEXT overlapping my header image, being clickable but the image remaining unclickable….
Forum: Fixing WordPress
In reply to: Header Image link