Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Plugin | Random Content Display
#6
Lines 81, 82, 85 and 86 of the plugin file (simple-random.php) tell the page what to display. As an example, if we take the quote as the title (because it’s unique) and the author as the description we would want to display title first. This means lines 85 and 86 are the ones we’ll be using.

Code:
echo htmlspecialchars_decode((string)$data_edit->content[$random_number]->contenttitle[0]);
      echo htmlspecialchars_decode((string)$data_edit->content[$random_number]->contentinformation[0]);
Let’s put some quotation marks around the quote and a dash before the author:
Code:
echo "“".htmlspecialchars_decode((string)$data_edit->content[$random_number]->contenttitle[0])."”";
      echo " - ".htmlspecialchars_decode((string)$data_edit->content[$random_number]->contentinformation[0]);
The same goes for italics:
Code:
echo "“<i>".htmlspecialchars_decode((string)$data_edit->content[$random_number]->contenttitle[0])."</i>”";
      echo " - ".htmlspecialchars_decode((string)$data_edit->content[$random_number]->contentinformation[0]);
Now if you have written It’s hard to beat somebody when they don’t give up. as the title of some random content, and gave it a description Babe Ruth, simple_random_display() will output the following HTML:
Code:
“<i>It’s hard to beat somebody when they don’t give up.</i>” - Babe Ruth

Hope you understood, you can add any HTML you want!
“Don’t forget the important ˚ (not °) on the a,” says the Unicode lover.
Help us test a key change for the core! ¶ Problems with GetSimple? Be sure to enable debug mode!
Reply


Messages In This Thread
Plugin | Random Content Display - by crashfellow - 2010-03-07, 21:42:46
Plugin | Random Content Display - by n00dles101 - 2010-03-08, 06:43:15
Plugin | Random Content Display - by crashfellow - 2010-03-08, 08:15:38
Plugin | Random Content Display - by juliancc - 2010-03-15, 02:54:21
Plugin | Random Content Display - by Razzia - 2010-03-28, 13:47:56
Plugin | Random Content Display - by Zegnåt - 2010-03-28, 18:51:59
Plugin | Random Content Display - by Razzia - 2010-03-28, 21:32:14
Plugin | Random Content Display - by Razzia - 2010-03-29, 06:41:10
Plugin | Random Content Display - by homershines - 2010-09-27, 03:01:39
Plugin | Random Content Display - by Oleg06 - 2010-12-22, 01:29:29
Plugin | Random Content Display - by andyash - 2011-06-15, 19:45:07
Plugin | Random Content Display - by Oleg06 - 2011-08-22, 03:10:11
Plugin | Random Content Display - by Oleg06 - 2011-08-22, 03:27:56
Plugin | Random Content Display - by Oleg06 - 2011-08-22, 04:56:26
Plugin | Random Content Display - by Carlos - 2011-08-22, 05:48:08
Plugin | Random Content Display - by crashfellow - 2011-08-22, 08:38:57
Plugin | Random Content Display - by Oleg06 - 2011-08-23, 03:37:38



Users browsing this thread: 1 Guest(s)