Thread Starter
libtek
(@libtek)
I’m returning exactly what was passed to it. I’m not modifying the data either, just writing the data to a file and that’s it:
add_action(‘feedwordpress_update’, ‘blt_check_url’);
function blt_check_url($feed)
{
$file1 = “/www/example.com/htdocs/wp-content/plugins/url.txt”;
$fh = fopen($file1, ‘w’);
fwrite($fh, $feed);
flcose($fh);
return $feed;
}
Thread Starter
libtek
(@libtek)
Images have alt and title tags. I want to use css to hide the image until a hover over the textlink. I got that to work outside of WP, but need a way to get my links in the following format to make it work:
< a h ref="asdf.html">link 1<img src="pic.jpg"></a>
If I choose to display images, the “link 1” part disappears.