If you want to display your Facebook account's wall within a Joomla CMS as part of a website development project, you can use the free extension "qe Facebook Wall Feed" (Joomla 1.5 and Joomla 2.5). It is easy to install by following the instructions in the manual (create a Facebook application, log in with Facebook, integrate it, and you're done).
The disadvantage of this module is that it does not provide an option to restrict the displayed posts to specific users (e.g. showing only posts from the account owner). However, this functionality can be added with a small modification to the module:
In the file /modules/mod_fbwallfeed/tmpl/default.php, look for the following line (approximately line 74):
foreach($posts as $post){
and wrap the entire contents of the foreach loop in an if statement:
if ($post['from']['id']==12345678910){
Replace the number with the Facebook user ID of the desired user. Your own user ID can, for example, be read directly from the Facebook Wall Feed module or by hovering over the corresponding wall within Joomla.
