 <h3>Repository</h3> https://github.com/ampirecity/AMPWPBasics1 <h3>What Will I Learn?</h3> Setting up AMP plugin for Wordpress; Setting up files for a custom AMP Wordpress theme. <h3>Requirements:</h3> • A fresh WordPress version on your preferred server; • AMP for Wordpress plugin; • Basic CSS & HTML knowledge; • Basic PHP knowledge. <h3>Difficulty:</h3> Easy <h3>Useful links:</h3> **Fresh Wordpress version:** https://wordpress.org/download/ **AMP Plugin:** https://wordpress.org/plugins/amp/ <h2>Setting up AMP for Wordpress plugin</h2> Wordpress and the team behind the AMP plugin for the platform are constantly working to improve things. If you are using one of the official themes you can just stop reading here, with AMP plugin 0.7+ the pages will be converted into AMP automatically. However, while it could work for personal projects or small businesses, more advances websites might want to use AMP to its fullest. While the high-end project doesn’t require AMP plugin at all, for most cases it is better to start with it onboard. The default settings I use are set to Template Mode: Native with tree shaking and all templates queried checked.  <h2>Setting up custom AMP theme</h2> As for any theme in Wordpress, only style.css and index.php are required, but I prefer starting with all of these files: **style.css** – Sets up the theme. **index.php** – The main template file. **functions.php** – The place where customize the functioning of your theme. **header.php** – Universal code before the content. **footer.php** – Universal code after the content. **screenshot.png** – 880x660px thumbnail for the theme.   For tab-junkies like me, I recommend adding a favicon to recognize the tab of the website I am working on, as fast as possible. You can do that by going Appearance > Customize > Site Identity. <h2>Using plugins with AMP for Wordpress</h2> The whole point of AMP (Accelerated Mobile Pages) is it’s the simplicity and loading speed, therefore avoid installing any unnecessary plugins. One thing is for sure, as AMP plugin will notify you, AMP will work best with caching enabled. There are many cache plugins out there, you can choose the one you prefer. I suggest you do so after developing the theme.  *W3 Total Cache example* <h2>Setting up style.css correctly</h2> In order to set up the basic information of your theme, you need to set the header of this file correctly. While not all of these fields are required, this is the basic template for setting up a Wordpress theme. ``` /* Theme Name: Self-explanatory. Theme URI: Self-explanatory. Author: Name yourself. Author URI: Advertise yourself. Description: Whatever your heart wants it to be. Version: The version of your release. License: Extra licensing License URI: Self-explanatory Tags: Self-explanatory. Text Domain: required for multi-lingual websites */ ```  <h2>Setting up functions.php for the theme</h2> For starters, functions.php can be empty, but in order for style.css to work correctly, you need to load it as a stylesheet file as well. Also, as a personal choice, I add the fonts for the website and enable featured images. At the start of a project my functions.php is as it follows: ``` <?php // Load CSS function enqueue_style() { wp_enqueue_style('style', get_stylesheet_uri()); } add_action('wp_enqueue_scripts', 'enqueue_style'); // Load fonts function load_fonts() { wp_enqueue_style('Exo', 'https://fonts.googleapis.com/css?family=Exo:500,500i,700,700i&subset=latin-ext'); } add_action('wp_enqueue_scripts', 'load_fonts'); // Activate featured images add_theme_support( 'post-thumbnails' ); ``` <h2>Setting up basic template files for the theme</h2> The whole point of header.php and footer.php template files, is to make the general code, above and below the content, the same. You can add the content of these files to any template file in the same way I added to my index.php: <h3>index.php</h3> ``` <?php get_header(); ?> <h1>That's one small step for man</h1> <?php get_footer(); ?> ``` <h2>Minimal header and footer content example</h2> <h3>header.php</h3> ``` <!DOCTYPE html> <html lang="en"> <head> <meta charset="<?php bloginfo('charset'); ?>"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title><?php bloginfo('name') ?></title> <?php wp_head(); ?> </head> <body <?php body_class(); ?> ``` <h3>footer.php</h3> ``` <?php wp_footer() ?> </body> </html> ``` <h2>The Progress</h2>  And that is it, you are now all set up to start developing your own custom AMP Wordpress theme. --------------------------- *__Originally posted on 3/20/2019__ Versions: Wordpress 5.1 AMP 1.02* ---------------------------  <h2>Newsletter Subscription</h2> As some of you might have noticed, I don't post very often and my blog might be a bit hard to follow. Fort this reason, I created a subscription lst for anyone who is willing to get a notice once I publish a new blog post. You can subscribe to it by clicking<a href="https://www.subscribepage.com/connectingthedots"> here</a> --------------------------- *__Author:__ Mantas Ališauskas __Photography:__ Mantas Ališauskas __Design:__ <a href="http://webpark.lt/">Mantas Ališauskas</a> __Blog:__ <a href="http://www.ampire.city">AMPire.city</a>* --------------------------- <h2>Want more of this?</h2> Any given post entry of any given place takes me around 20h to complete. This includes writing, researching, photo editing, creation of graphics and actual post. Nobody pays me to do it, therefore I must do it on my free time. I have many interesting ideas of how to put an interesting information into an easy way to digest it, like maps, infographics and other cool stuff, but what I lack is time. If you appreciate my work and happened to be in a position where it wouldn't hurt you, it would mean a world to me if you could gift me an extra hour on Patreon. <a href="https://www.patreon.com/bePatron?u=949078" data-patreon-widget-type="become-patron-button">Become a Patron!</a>
author | ctdots |
---|---|
permlink | amp-wordpress-basics-1-setting-up-wordpress-for-a-custom-theme |
category | utopian-io |
json_metadata | {"tags":["utopian-io","tutorials","amp","blog","share2steem"],"image":["https://cdn.steemitimages.com/DQmcN8ecjeSgGKQxG7Spgw8cKoDBDXTYzLxAd3RgSKn8Q4y/AMP%20WP%20Basics%201.jpg","https://cdn.steemitimages.com/DQmXWTbbK4uMVyarhuCnBnDTDjio4PZ4fVM534bouvujhCL/Steps_setting-up-wordpress-for=a=custom-amp-theme-1%20copy%202.jpg","https://cdn.steemitimages.com/DQmexB8c2Y4ZnvtJBPkaQ2zTCoDKbUp2j294DvWE8WerRmj/Steps_setting-up-wordpress-for=a=custom-amp-theme-1%20copy%204.jpg","https://cdn.steemitimages.com/DQmbXHXcpW7gTq7vbPmEke2oXr1gdCDKDWhoLV3H2N6p8sr/Steps_setting-up-wordpress-for=a=custom-amp-theme-1.jpg","https://cdn.steemitimages.com/DQmccjaY6zpkvLdYXeG9NbuhninJyE2w8mk4iAd8iMfuwFr/Steps_setting-up-wordpress-for=a=custom-amp-theme-1%20copy%205.jpg","https://cdn.steemitimages.com/DQmPsbKz9Hv2wfQvHNkKNapcYU5sx1aD3anwqsDvrEY9WWJ/Steps_setting-up-wordpress-for=a=custom-amp-theme-1%20copy%203.jpg","https://cdn.steemitimages.com/DQmf4VkuQGmeZ458YZWXzAETqKxVg6J2j2Gy7LSMEYVdS6F/Steps_setting-up-wordpress-for=a=custom-amp-theme-1%20copy%205.jpg","https://cdn.steemitimages.com/DQmQmE8FfRUqBnwTKPuKyvND5UsSnfUCLm1WPPsBR7fZsv1/ampirecity-dark@2x.png"],"links":["https://github.com/ampirecity/AMPWPBasics1","https://wordpress.org/download/","https://wordpress.org/plugins/amp/","https://www.subscribepage.com/connectingthedots","http://webpark.lt/","http://www.ampire.city","https://www.patreon.com/bePatron?u=949078"],"app":"steemit/0.1","format":"markdown"} |
created | 2019-03-20 01:08:00 |
last_update | 2019-03-20 01:08:00 |
depth | 0 |
children | 8 |
last_payout | 2019-03-27 01:08:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 3.358 HBD |
curator_payout_value | 1.056 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7,584 |
author_reputation | 23,251,211,441,427 |
root_title | "AMP Wordpress Basics #1: Setting up Wordpress for a Custom Theme" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,599,588 |
net_rshares | 6,541,121,746,122 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tombstone | 0 | 391,193,788,176 | 1.69% | ||
rufans | 0 | 20,077,122,339 | 100% | ||
choogirl | 0 | 6,856,088,428 | 10% | ||
jga | 0 | 201,857,824 | 2.12% | ||
helo | 0 | 11,371,784,660 | 5.14% | ||
codingdefined | 0 | 7,173,094,355 | 5.14% | ||
leir | 0 | 2,116,582,917 | 50% | ||
jadabug | 0 | 2,147,877,101 | 1% | ||
espoem | 0 | 9,563,863,903 | 5% | ||
mcfarhat | 0 | 3,866,608,678 | 2.05% | ||
ctdots | 0 | 11,001,857,401 | 100% | ||
utopian-io | 0 | 5,105,609,407,825 | 4.24% | ||
jaff8 | 0 | 12,342,318,161 | 5.14% | ||
newsrx | 0 | 77,118,624 | 6.53% | ||
tommy-gun | 0 | 6,921,776,877 | 100% | ||
lostmine27 | 0 | 11,508,058,165 | 25% | ||
amosbastian | 0 | 17,958,255,720 | 5.14% | ||
asaj | 0 | 17,520,512,179 | 100% | ||
sargoon | 0 | 91,718,954 | 3.26% | ||
tobias-g | 0 | 128,218,201,402 | 38% | ||
fego | 0 | 3,799,213,190 | 5.14% | ||
ezravandi | 0 | 3,870,679,290 | 1% | ||
feronio | 0 | 918,870,052 | 100% | ||
we-are | 0 | 5,650,549,235 | 10.09% | ||
sbi5 | 0 | 17,014,755,484 | 6.1% | ||
ulockblock | 0 | 40,573,389,359 | 12.12% | ||
cryptouno | 0 | 508,366,240 | 5% | ||
swapsteem | 0 | 189,866,689 | 2.12% | ||
steem-ua | 0 | 678,068,447,319 | 6.53% | ||
gilbertrichar | 0 | 491,939,997 | 100% | ||
oleg.domov | 0 | 491,889,604 | 100% | ||
bluesniper | 0 | 2,529,783,346 | 0.82% | ||
ascorphat | 0 | 2,248,890,548 | 2.5% | ||
we-are-steemians | 0 | 5,121,142,542 | 5.06% | ||
bejust | 0 | 1,561,903,041 | 100% | ||
hozn4ukhlytriwc | 0 | 124,117,837 | 15% | ||
progressing | 0 | 1,380,812,660 | 100% | ||
dofar | 0 | 445,182,914 | 100% | ||
esedrofen | 0 | 445,147,170 | 100% | ||
tutra | 0 | 445,139,427 | 100% | ||
orindouti | 0 | 445,161,731 | 100% | ||
edseco | 0 | 445,141,067 | 100% | ||
wondowno | 0 | 445,133,958 | 100% | ||
amunsuch | 0 | 445,175,099 | 100% | ||
ertugimul | 0 | 445,173,492 | 100% | ||
engeem | 0 | 445,118,916 | 100% | ||
rerdoo | 0 | 445,123,219 | 100% | ||
tyzone | 0 | 445,113,478 | 100% | ||
erongise | 0 | 445,113,194 | 100% | ||
olfookiro | 0 | 445,104,422 | 100% | ||
yousti | 0 | 445,140,805 | 100% | ||
esopr | 0 | 445,107,993 | 100% | ||
elarus | 0 | 445,104,130 | 100% | ||
tengar | 0 | 445,092,625 | 100% | ||
afret | 0 | 445,061,802 | 100% | ||
isalea | 0 | 445,102,130 | 100% | ||
entendes | 0 | 445,034,491 | 100% | ||
ofresesh | 0 | 445,077,630 | 100% | ||
yungetyi | 0 | 445,117,500 | 100% | ||
ubrai | 0 | 445,047,706 | 100% | ||
tenyears | 0 | 521,521,101 | 100% |
Thank you for your contribution @ctdots. After reviewing your tutorial we suggest the following points listed below: - There are already several tutorials to explain about setting up Wordpress for a custom theme. - We suggest that in the next tutorial explain more innovative functionality about Wordpress. - Include proof of work under the shape of a gist or your own github repository containing your code. Looking forward to your upcoming tutorials. Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category. To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/8/3-1-3-2-1-4-2-4-). ---- Need help? Chat with us on [Discord](https://discord.gg/uTyJkNm). [[utopian-moderator]](https://join.utopian.io/)
author | portugalcoin |
---|---|
permlink | re-ctdots-amp-wordpress-basics-1-setting-up-wordpress-for-a-custom-theme-20190320t213110486z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["ctdots"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/8/3-1-3-2-1-4-2-4-","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"} |
created | 2019-03-20 21:31:09 |
last_update | 2019-03-20 21:31:09 |
depth | 1 |
children | 3 |
last_payout | 2019-03-27 21:31:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 6.769 HBD |
curator_payout_value | 2.133 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 908 |
author_reputation | 598,828,312,571,988 |
root_title | "AMP Wordpress Basics #1: Setting up Wordpress for a Custom Theme" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,640,951 |
net_rshares | 13,716,285,437,667 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
yuxi | 0 | 23,117,145,111 | 100% | ||
codingdefined | 0 | 23,098,202,990 | 16.48% | ||
espoem | 0 | 28,626,176,736 | 15% | ||
ctdots | 0 | 11,001,857,401 | 100% | ||
utopian-io | 0 | 13,456,959,488,836 | 9.59% | ||
jaff8 | 0 | 39,661,201,137 | 16.48% | ||
emrebeyler | 0 | 6,769,634 | 0.01% | ||
amosbastian | 0 | 57,667,050,155 | 16.48% | ||
nenya | 0 | 1,591,432,356 | 80% | ||
sudefteri | 0 | 6,111,526,318 | 100% | ||
akifane | 0 | 612,337,415 | 100% | ||
reazuliqbal | 0 | 13,704,842,422 | 8% | ||
amico | 0 | 1,019,340,150 | 0.55% | ||
ulockblock | 0 | 23,200,140,997 | 7.27% | ||
nijn | 0 | 821,469,128 | 80% | ||
quenty | 0 | 2,257,671,803 | 60% | ||
curbot | 0 | 2,591,597,557 | 100% | ||
ascorphat | 0 | 2,323,433,796 | 2.5% | ||
nimloth | 0 | 3,036,849,304 | 80% | ||
yff | 0 | 18,058,400,089 | 100% | ||
curatortrail | 0 | 296,999,915 | 95% | ||
cleanit | 0 | 521,504,417 | 100% |
Thanks for the tips! It was my first tutorial so your feedback is very appreciated. It is a first part of the series therefore the topic is so simple, also I mad ea mistake. I believe there is plenty of tutorials of how to set up a custom theme, but on this one I want to focus on custom AMP theme. My bad making a wrong topic:)
author | ctdots |
---|---|
permlink | re-portugalcoin-re-ctdots-amp-wordpress-basics-1-setting-up-wordpress-for-a-custom-theme-20190321t092312562z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-03-21 09:23:15 |
last_update | 2019-03-21 09:23:15 |
depth | 2 |
children | 0 |
last_payout | 2019-03-28 09:23:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 328 |
author_reputation | 23,251,211,441,427 |
root_title | "AMP Wordpress Basics #1: Setting up Wordpress for a Custom Theme" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,668,086 |
net_rshares | 0 |
Thank you for your review, @portugalcoin! Keep up the good work!
author | utopian-io |
---|---|
permlink | re-re-ctdots-amp-wordpress-basics-1-setting-up-wordpress-for-a-custom-theme-20190320t213110486z-20190323t122231z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-03-23 12:22:33 |
last_update | 2019-03-23 12:22:33 |
depth | 2 |
children | 1 |
last_payout | 2019-03-30 12:22:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 64 |
author_reputation | 152,955,367,999,756 |
root_title | "AMP Wordpress Basics #1: Setting up Wordpress for a Custom Theme" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,799,487 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ctdots | 0 | 0 | 100% |
Totally agree:)
author | ctdots |
---|---|
permlink | re-utopian-io-re-re-ctdots-amp-wordpress-basics-1-setting-up-wordpress-for-a-custom-theme-20190323t122231z-20190402t064812443z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-04-02 06:48:12 |
last_update | 2019-04-02 06:48:12 |
depth | 3 |
children | 0 |
last_payout | 2019-04-09 06:48:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 15 |
author_reputation | 23,251,211,441,427 |
root_title | "AMP Wordpress Basics #1: Setting up Wordpress for a Custom Theme" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 82,350,526 |
net_rshares | 0 |
#### Hi @ctdots! Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation! Your post is eligible for our upvote, thanks to our collaboration with @utopian-io! **Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
author | steem-ua |
---|---|
permlink | re-amp-wordpress-basics-1-setting-up-wordpress-for-a-custom-theme-20190320t221840z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.18"}" |
created | 2019-03-20 22:18:42 |
last_update | 2019-03-20 22:18:42 |
depth | 1 |
children | 1 |
last_payout | 2019-03-27 22:18:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 285 |
author_reputation | 23,214,230,978,060 |
root_title | "AMP Wordpress Basics #1: Setting up Wordpress for a Custom Theme" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,642,596 |
net_rshares | 10,783,199,472 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ctdots | 0 | 10,783,199,472 | 100% |
Thank you!
author | ctdots |
---|---|
permlink | re-steem-ua-re-amp-wordpress-basics-1-setting-up-wordpress-for-a-custom-theme-20190320t221840z-20190321t092334812z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-03-21 09:23:36 |
last_update | 2019-03-21 09:23:36 |
depth | 2 |
children | 0 |
last_payout | 2019-03-28 09:23:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10 |
author_reputation | 23,251,211,441,427 |
root_title | "AMP Wordpress Basics #1: Setting up Wordpress for a Custom Theme" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,668,095 |
net_rshares | 0 |
Hey, @ctdots! **Thanks for contributing on Utopian**. We’re already looking forward to your next contribution! **Get higher incentives and support Utopian.io!** Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via [SteemPlus](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en) or [Steeditor](https://steeditor.app)). **Want to chat? Join us on Discord https://discord.gg/h52nFrV.** <a href='https://steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
author | utopian-io |
---|---|
permlink | re-amp-wordpress-basics-1-setting-up-wordpress-for-a-custom-theme-20190321t131403z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-03-21 13:14:06 |
last_update | 2019-03-21 13:14:06 |
depth | 1 |
children | 1 |
last_payout | 2019-03-28 13:14:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 588 |
author_reputation | 152,955,367,999,756 |
root_title | "AMP Wordpress Basics #1: Setting up Wordpress for a Custom Theme" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,678,550 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ctdots | 0 | 0 | 100% |
Thank for creating an awesome platform:)
author | ctdots |
---|---|
permlink | re-utopian-io-re-amp-wordpress-basics-1-setting-up-wordpress-for-a-custom-theme-20190321t131403z-20190402t064845873z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-04-02 06:48:45 |
last_update | 2019-04-02 06:48:45 |
depth | 2 |
children | 0 |
last_payout | 2019-04-09 06:48:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 40 |
author_reputation | 23,251,211,441,427 |
root_title | "AMP Wordpress Basics #1: Setting up Wordpress for a Custom Theme" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 82,350,542 |
net_rshares | 0 |