Im using the "post-from-site" plugin. Alls Im trying to do is make it so the image appears before the content text when it's posted. Is that possible? I was looking at the code for submit but couldn't figure out where to change things around. Here's a copy.
http://wordpress.org/extend/plugins/post-from-site/
kenken023
Member
Posted 1 year ago #
Edit the pfs-submit.php of the plugin:
find the ff code (line 118):
if (False === strpos($content,$imgtag)) $content .= "\n\n$imgtag";
replace it with:
if (False === strpos($content,$imgtag)) $content = "$imgtag\n\n".$content;
luchosar
Member
Posted 1 year ago #
kenken023..excelente !!!!
and to align the izquierad?