Perze Ababa
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 stopped workingI still had this issue despite my servers being on PHP 7.4.25. The only way to get my wp-admin page to load was for me to rename the constant ‘namespace’ into something else. When the page loaded, I deactivated the contact form plugin, then reran the plugin update.
Forum: Plugins
In reply to: [Fluid Responsive Slideshow] Fatal error: Cannot use "self"…What version of PHP are you using? This happened to me when I upgraded to PHP7 from PHP 5.6
Just confirming that when I upgraded PHP to v5.2.5 this plugin works like a charm.
Yeah turns out this is a stupid issue since i didn’t read the manual when it said specifically to use PHP 5
thanks mr blank. the only reason why i did what i did was because i needed a quick fix and fast. i’ll take a look into this solution and will try to implement it.
again, thanks.
had to turn to the dark side on this one. i ended up using the built-in WP XML parser.
<?php require_once('blah..blah/wp-includes/rss.php'); ?> <?php $rss = fetch_rss('your feed here'); $ijk = 0; ?> <?php foreach ( $rss->items as $item ) : ?> <?php print ("• ");?> <a href='<?php echo $item['link']; ?>' title='<?php echo $item['title']; ?>'> <?php echo $item['title']; ?> </a> <br /?> <?php $ijk++; // i want to limit the results to 5 if ($ijk == 5) { break; } ?> <?php endforeach; ?>anyone?